From 3477cfaaa0451ff85685ee7cdb29ed570e123a40 Mon Sep 17 00:00:00 2001 From: Himanshu Bisht Date: Thu, 7 Nov 2024 11:57:28 +0530 Subject: [PATCH] [Azure Load Testing] Adding disable-public-ip argument in load extension (#8239) * Adding support for publicIPDisabled * Added test cases for public ip disabled param * Changing version from 1.1.2 to 1.2.0 as its minor changes and not patch * nit: condition refactoring and pushing new recordings * added more test cases * nit: fixing CI failures --- src/load/HISTORY.rst | 4 + .../azext_load/data_plane/load_test/custom.py | 6 + .../azext_load/data_plane/load_test/params.py | 2 + .../azext_load/data_plane/utils/argtypes.py | 8 + src/load/azext_load/data_plane/utils/utils.py | 11 +- .../azext_load/data_plane/utils/validators.py | 20 + src/load/azext_load/tests/latest/constants.py | 7 + .../recordings/test_load_app_component.yaml | 1167 ++++----- .../test_load_test_app_component.yaml | 475 ++-- .../recordings/test_load_test_create.yaml | 1203 ++++----- ...test_load_test_create_and_update_vnet.yaml | 2322 +++++++++++++++++ .../test_load_test_create_with_args.yaml | 246 +- .../recordings/test_load_test_delete.yaml | 451 ++-- .../test_load_test_download_files.yaml | 475 ++-- .../recordings/test_load_test_file.yaml | 909 +++---- .../recordings/test_load_test_list.yaml | 501 ++-- .../recordings/test_load_test_run_create.yaml | 975 ++++--- .../recordings/test_load_test_run_delete.yaml | 1164 ++++----- .../test_load_test_run_download_files.yaml | 1445 +++++----- .../recordings/test_load_test_run_list.yaml | 990 +++---- .../test_load_test_run_metrics.yaml | 1533 +++++------ .../test_load_test_run_server_metric.yaml | 1149 ++++---- .../recordings/test_load_test_run_show.yaml | 1014 ++++--- .../recordings/test_load_test_run_stop.yaml | 699 ++--- .../recordings/test_load_test_run_update.yaml | 1246 ++++----- .../test_load_test_server_metric.yaml | 637 ++--- .../recordings/test_load_test_show.yaml | 453 ++-- .../recordings/test_load_test_update.yaml | 587 ++--- .../test_load_test_update_with_config.yaml | 728 ++---- .../config-disable-public-ip-false.yaml | 15 + .../config-disable-public-ip-true.yaml | 15 + .../azext_load/tests/latest/test_load_test.py | 154 +- src/load/setup.py | 2 +- 33 files changed, 10513 insertions(+), 10100 deletions(-) create mode 100644 src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml create mode 100644 src/load/azext_load/tests/latest/resources/config-disable-public-ip-false.yaml create mode 100644 src/load/azext_load/tests/latest/resources/config-disable-public-ip-true.yaml diff --git a/src/load/HISTORY.rst b/src/load/HISTORY.rst index 44c9bb77c39..538147baa99 100644 --- a/src/load/HISTORY.rst +++ b/src/load/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +1.2.0 +++++++ +* Added support for disable public IP in test creation and update. This can be done by using --disable-public-ip argument in 'az load test create' and 'az load test update' commands. + 1.1.1 ++++++ * Fix empty response object on CLI when using 'az load test file upload' 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 31f48ca073b..0fab300c360 100644 --- a/src/load/azext_load/data_plane/load_test/custom.py +++ b/src/load/azext_load/data_plane/load_test/custom.py @@ -40,6 +40,7 @@ def create_test( key_vault_reference_identity=None, subnet_id=None, split_csv=None, + disable_public_ip=None, custom_no_wait=False, ): client = get_admin_data_plane_client(cmd, load_test_resource, resource_group_name) @@ -70,6 +71,7 @@ def create_test( key_vault_reference_identity=key_vault_reference_identity, subnet_id=subnet_id, split_csv=split_csv, + disable_public_ip=disable_public_ip, ) else: yaml = load_yaml(load_test_config_file) @@ -87,6 +89,7 @@ def create_test( key_vault_reference_identity=key_vault_reference_identity, subnet_id=subnet_id, split_csv=split_csv, + disable_public_ip=disable_public_ip, ) 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) @@ -119,6 +122,7 @@ def update_test( key_vault_reference_identity=None, subnet_id=None, split_csv=None, + disable_public_ip=None, custom_no_wait=False, ): client = get_admin_data_plane_client(cmd, load_test_resource, resource_group_name) @@ -148,6 +152,7 @@ def update_test( key_vault_reference_identity=key_vault_reference_identity, subnet_id=subnet_id, split_csv=split_csv, + disable_public_ip=disable_public_ip, ) else: body = create_or_update_test_without_config( @@ -162,6 +167,7 @@ def update_test( key_vault_reference_identity=key_vault_reference_identity, subnet_id=subnet_id, split_csv=split_csv, + disable_public_ip=disable_public_ip, ) 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/params.py b/src/load/azext_load/data_plane/load_test/params.py index 095e13ea5dd..470f0a50642 100644 --- a/src/load/azext_load/data_plane/load_test/params.py +++ b/src/load/azext_load/data_plane/load_test/params.py @@ -28,6 +28,7 @@ def load_arguments(self, _): ) c.argument("engine_instances", argtypes.engine_instances) c.argument("custom_no_wait", argtypes.custom_no_wait) + c.argument("disable_public_ip", argtypes.disable_public_ip) with self.argument_context("load test update") as c: c.argument("load_test_config_file", argtypes.load_test_config_file) @@ -44,6 +45,7 @@ def load_arguments(self, _): c.argument("subnet_id", argtypes.subnet_id) c.argument("split_csv", argtypes.split_csv) c.argument("custom_no_wait", argtypes.custom_no_wait) + c.argument("disable_public_ip", argtypes.disable_public_ip) with self.argument_context("load test download-files") as c: c.argument("path", argtypes.dir_path) diff --git a/src/load/azext_load/data_plane/utils/argtypes.py b/src/load/azext_load/data_plane/utils/argtypes.py index c29513cfc00..1bb65e85fb5 100644 --- a/src/load/azext_load/data_plane/utils/argtypes.py +++ b/src/load/azext_load/data_plane/utils/argtypes.py @@ -34,6 +34,14 @@ help="Do not wait for the long-running operation to finish.", ) +disable_public_ip = CLIArgumentType( + validator=validators.validate_disable_public_ip, + options_list=["--disable-public-ip"], + type=str, + help="Disable the deployment of a public IP address, load balancer, and network security group while testing a private endpoint.", +) + + force = CLIArgumentType( options_list=["--force"], action="store_true", diff --git a/src/load/azext_load/data_plane/utils/utils.py b/src/load/azext_load/data_plane/utils/utils.py index 6def74ce58a..985b9203fcc 100644 --- a/src/load/azext_load/data_plane/utils/utils.py +++ b/src/load/azext_load/data_plane/utils/utils.py @@ -301,7 +301,8 @@ def convert_yaml_to_test(data): new_body["secrets"] = parse_secrets(data.get("secrets")) if data.get("env"): new_body["environmentVariables"] = parse_env(data.get("env")) - + if data.get("publicIPDisabled"): + new_body["publicIPDisabled"] = data.get("publicIPDisabled") # quick test and split csv not supported currently in CLI new_body["loadTestConfiguration"]["quickStartTest"] = False if data.get("quickStartTest"): @@ -365,6 +366,7 @@ def create_or_update_test_with_config( key_vault_reference_identity=None, subnet_id=None, split_csv=None, + disable_public_ip=None, ): logger.info( "Creating a request body for create or update test using config and parameters." @@ -397,6 +399,10 @@ def create_or_update_test_with_config( new_body["keyvaultReferenceIdentityType"] = IdentityType.SystemAssigned new_body.pop("keyvaultReferenceIdentityId") subnet_id = subnet_id or yaml_test_body.get("subnetId") + if disable_public_ip is not None: + new_body["publicIPDisabled"] = disable_public_ip + else: + new_body["publicIPDisabled"] = yaml_test_body.get("publicIPDisabled", False) if subnet_id: if subnet_id.casefold() in ["null", ""]: new_body["subnetId"] = None @@ -485,6 +491,7 @@ def create_or_update_test_without_config( key_vault_reference_identity=None, subnet_id=None, split_csv=None, + disable_public_ip=None, ): logger.info( "Creating a request body for test using parameters and old test body (in case of update)." @@ -549,6 +556,8 @@ def create_or_update_test_without_config( new_body["loadTestConfiguration"]["splitAllCSVs"] = body[ "loadTestConfiguration" ]["splitAllCSVs"] + if disable_public_ip is not None: + new_body["publicIPDisabled"] = disable_public_ip 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/validators.py b/src/load/azext_load/data_plane/utils/validators.py index 1ec66481b31..48ab1d1c31f 100644 --- a/src/load/azext_load/data_plane/utils/validators.py +++ b/src/load/azext_load/data_plane/utils/validators.py @@ -382,3 +382,23 @@ def validate_split_csv(namespace): namespace.split_csv = True else: namespace.split_csv = False + + +def validate_disable_public_ip(namespace): + if namespace.disable_public_ip is None: + return + if not isinstance(namespace.disable_public_ip, str): + raise InvalidArgumentValueError( + f"Invalid disable-public-ip type: {type(namespace.disable_public_ip)}" + ) + if namespace.disable_public_ip.casefold() not in [ + "true", + "false", + ]: + raise InvalidArgumentValueError( + f"Invalid disable-public-ip value: {namespace.disable_public_ip}. Allowed values: true, false" + ) + if namespace.disable_public_ip.casefold() in ["true"]: + namespace.disable_public_ip = True + else: + namespace.disable_public_ip = False diff --git a/src/load/azext_load/tests/latest/constants.py b/src/load/azext_load/tests/latest/constants.py index 5e12f16ed57..cd0427ace28 100644 --- a/src/load/azext_load/tests/latest/constants.py +++ b/src/load/azext_load/tests/latest/constants.py @@ -11,6 +11,8 @@ class LoadConstants: # Test Plan constants LOAD_TEST_CONFIG_FILE = os.path.join(TEST_RESOURCES_DIR, r"config.yaml") + LOAD_TEST_CONFIG_FILE_PUBLIC_IP_DISABLED_FALSE = os.path.join(TEST_RESOURCES_DIR, r"config-disable-public-ip-false.yaml") + LOAD_TEST_CONFIG_FILE_PUBLIC_IP_DISABLED_TRUE = os.path.join(TEST_RESOURCES_DIR, r"config-disable-public-ip-true.yaml") INVALID_LOAD_TEST_CONFIG_FILE = os.path.join( TEST_RESOURCES_DIR, r"invalid-config.yaml" ) @@ -48,6 +50,9 @@ class LoadConstants: SPLIT_CSV_TRUE = "true" SPLIT_CSV_FALSE = "false" + DISABLE_PUBLIC_IP_TRUE = "true" + DISABLE_PUBLIC_IP_FALSE = "false" + INVALID_SUBNET_ID = r"/subscriptions/invalid/resource/id" KEYVAULT_REFERENCE_ID = r"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi" # App Component constants @@ -71,6 +76,7 @@ class LoadConstants: class LoadTestConstants(LoadConstants): # Test IDs for load test commands UPDATE_WITH_CONFIG_TEST_ID = "update-with-config-test-case" + CREATE_AND_UPDATE_VNET_TEST_ID = "create-update-vnet-test-case" DELETE_TEST_ID = "delete-test-case" CREATE_TEST_ID = "create-test-case" UPDATE_TEST_ID = "update-test-case" @@ -85,6 +91,7 @@ class LoadTestConstants(LoadConstants): INVALID_UPDATE_TEST_ID = "invalid-update-test-case" INVALID_PF_TEST_ID = "invalid-pf-test-case" INVALID_ZIP_COUNT_TEST_ID = "invalid-zip-count-test-case" + INVALID_DISABLED_PUBLIC_IP_TEST_ID = "invalid-disable-public-ip-test-case" DESCRIPTION = r"Sample_test_description" DISPLAY_NAME = r"Sample_test_display_name" 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 1a204936d87..ee94ca30df3 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:30 GMT + - Thu, 07 Nov 2024 05:54:48 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F60CD652380F432B9339FD8053198FDE Ref B: CO6AA3150217023 Ref C: 2024-10-16T05:39:30Z' + - 'Ref A: E6ECB4791B2F48589EB5856485C86F5F Ref B: MAA201060516009 Ref C: 2024-11-07T05:54:49Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:39:31 GMT + - Thu, 07 Nov 2024 05:54:51 GMT mise-correlation-id: - - 45fa0257-2f58-4006-9e37-76314a11d44e + - 990a6e0b-a91a-46d0-b873-f5b1f7cac08a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T053931Z-166cf497cd4jdw4g4y9hv6ku6n00000007wg000000004sb8 + - 20241107T055450Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011933 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"6263cd95-3181-4bc7-b66b-2f3658a40744": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "b1eb817b-b315-4cab-ad88-105443c05cb9": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "a97b40ee-90b9-48c8-9750-b62fe0ec08b8": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"daf3595e-ee66-46b2-951b-5795d8c1c4e3": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "2e8024c5-89c0-4177-89f8-320f5562b4e8": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "50ee077f-1b3c-4d44-a7de-d10f5ed2c270": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:32.118Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:39:32.118Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:54:52.188Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:52.188Z","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 connection: - keep-alive content-length: - - '1059' + - '1053' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:32 GMT + - Thu, 07 Nov 2024 05:54:52 GMT location: - - https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview + - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview mise-correlation-id: - - e938f13c-1e97-4cf4-87c5-d9b0997e8153 + - 457704f4-5a62-4f82-9452-6e0ce9aed3b6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053931Z-166cf497cd4ljj2qr0tamq52u000000007qg00000000qyuu + - 20241107T055451Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f000000001195f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:32 GMT + - Thu, 07 Nov 2024 05:54:52 GMT mise-correlation-id: - - b1201c44-8ed3-4d32-ac0f-c49485f7ec74 + - 0cefe327-c534-450e-b8cc-804cbab00729 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053932Z-18489d46dccj85r8e2f8g29m2800000007x000000000mwss + - 20241107T055452Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119a2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A33Z&sr=b&sp=r&sig=OVGcrpjjwKsOqs7IDtwdG7xYf3iFRjkm8isyUUWBtiA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:33.0992149Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A53Z&sr=b&sp=r&sig=IgVm6H05Nd2zIT3bvQi0QEGGTHlA%2FnI5cvCFrVbwOA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:04:53.029899Z","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 connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:33 GMT + - Thu, 07 Nov 2024 05:54:53 GMT location: - - https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - cbafb6d2-6d6a-4d16-8c91-23a6c1a02517 + - 6ae551e2-cc57-4a69-a6b7-44b80093a756 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053932Z-166cf497cd4jqnrcydhdctbvm400000007vg000000001sw5 + - 20241107T055452Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119bc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A33Z&sr=b&sp=r&sig=OVGcrpjjwKsOqs7IDtwdG7xYf3iFRjkm8isyUUWBtiA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:33.5377863Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A53Z&sr=b&sp=r&sig=IgVm6H05Nd2zIT3bvQi0QEGGTHlA%2FnI5cvCFrVbwOA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:04:53.3461165Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:33 GMT + - Thu, 07 Nov 2024 05:54:53 GMT mise-correlation-id: - - 657f149c-bbec-45da-b786-8a616bb33c32 + - 1b9b3420-fa0c-41ac-87f3-d3c65f9a2a61 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053933Z-18489d46dccgwx6cyqev009zy000000007tg000000005vvb + - 20241107T055453Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119dn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A34Z&sr=b&sp=r&sig=%2B5G7T88J%2BUSs2N%2FgmOls7q0QtrCe1%2FkhJeiO8CqhPAg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:34.1044388Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A54Z&sr=b&sp=r&sig=L8htfkg7JbrDV0O%2BjMcsJPey0dzjd%2FmlP7u6ifrfd94%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:04:54.6768038Z","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 connection: - keep-alive content-length: - - '575' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:34 GMT + - Thu, 07 Nov 2024 05:54:54 GMT location: - - https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - dd37f22e-38ad-4d0e-a6da-79d3801dcb5a + - 6628baee-ab90-4473-8822-6be10f83f238 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053933Z-15484bdf4575xp6m65z1ff0ptn000000028g0000000094w1 + - 20241107T055453Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119ek x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,54 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T12%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A35Z&sr=b&sp=r&sig=N%2FFOJ%2Fpr%2FimCyoYM%2Brq9LdRNJMNdMJu19EMWX5OU4aA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:35.1866477Z","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 - connection: - - keep-alive - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:35 GMT - mise-correlation-id: - - 66c81262-7d0d-4f97-9ddc-85cafa3aa3de - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053934Z-166cf497cd4v8snbtm724w4g2c000000081g000000007nv1 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A40Z&sr=b&sp=r&sig=Jgm%2BEfAwlbJIf9DUvrbdir4Xg4B7QsW0hSjXL6k%2Fyxg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:40.5746047Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A54Z&sr=b&sp=r&sig=EeuF8saBebCJd0aMNHsVMREzqtGj3Ts1dmt8DluNGgY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:04:54.9327111Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:40 GMT + - Thu, 07 Nov 2024 05:54:55 GMT mise-correlation-id: - - 39645da5-c903-40d3-aa5f-cd622ee5497e + - 3f2207c3-dfd7-4093-a55a-407238328f76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053940Z-166cf497cd45mnb2hc29k63vhc00000007s000000000ap2x + - 20241107T055454Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f00000000119n6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T12%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A45Z&sr=b&sp=r&sig=EFGQRtFFvfHAiI%2FFzz2FHKNCIndLtAhFHopobHveRdg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:45.9280515Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A00Z&sr=b&sp=r&sig=QErq%2FEEp1jOtZm0E98Nir1gVzWUgXDJmcX3Ppd%2F%2FimI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:00.2300216Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:45 GMT + - Thu, 07 Nov 2024 05:55:00 GMT mise-correlation-id: - - 29d0c76a-51c9-4072-9689-7f9a9863ee03 + - 15357060-e832-458d-aa0e-e242f6b01786 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053945Z-18489d46dccg5n69wa1d0046r400000007e000000000as5z + - 20241107T055500Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011abd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A51Z&sr=b&sp=r&sig=K3VCwRk6TjmzW30lifpf4rvWNVCrivG8yq2ZZ1MKmhA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:51.210784Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A05Z&sr=b&sp=r&sig=Onzqj2YXFwab9%2BFQn4m8C5hhSmkpsCr6c5syg8P2U0o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:05.5507416Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:51 GMT + - Thu, 07 Nov 2024 05:55:05 GMT mise-correlation-id: - - 2c77a0b7-5aa3-4e6c-a11e-8600320baeb8 + - 3a58bcef-21b9-4e5d-84c9-f7a471984989 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053950Z-17f5d849667p5mkz7t2q3k9cbn00000006ng00000000374y + - 20241107T055505Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011b55 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A56Z&sr=b&sp=r&sig=%2Ff%2FiUt5R2%2FGuu33hl6eFcq%2F%2Buz%2FFIPHUxndmI3fhc%2Bo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:56.4743366Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A10Z&sr=b&sp=r&sig=f7Cgwvwye42YOurnH1nGuGuKOOjKrMSzuzFlxgOmqEg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:10.8039Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '581' + - '565' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:56 GMT + - Thu, 07 Nov 2024 05:55:10 GMT mise-correlation-id: - - 67279ab8-3583-4a76-8bc8-6249deb7bbc4 + - 73ac7384-3b8b-4f20-8563-b22b695f7eb9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053956Z-17f5d8496679ts4r4pwahv9kug00000006g000000000c5wd + - 20241107T055510Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011c1d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A01Z&sr=b&sp=r&sig=rd1dVMefLcQpYYGUxh2oPiCqwPDIrxdhsrnARgXj2cM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:01.8335904Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A16Z&sr=b&sp=r&sig=2pPBb9BAqAg8dhSA6VbTjiskHnz3Oe0yuVlDHi6yTx0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:05:16.746654Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -571,13 +530,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:01 GMT + - Thu, 07 Nov 2024 05:55:16 GMT mise-correlation-id: - - 170f0b0c-05fb-44b7-ac8f-816dbb699d36 + - db9d2395-7ea5-49b4-b725-a808f3f33961 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054001Z-165bfd566cfvnfldckvfavskxn000000079g00000000fd7d + - 20241107T055515Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011cr7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +646,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A02Z&sr=b&sp=r&sig=tGq7ce6nYZ1sLTp8lDmSpp2EWfbFYB9zcQVqY4rV2%2Fc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:02.8030383Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A17Z&sr=b&sp=r&sig=%2FAF2MX2JMYZiOpgo2g3sS7wyBuWEA1SiQdGirFBnhoU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:17.9173198Z","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 connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:02 GMT + - Thu, 07 Nov 2024 05:55:18 GMT location: - - https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - afd82a0e-9e63-416e-b1df-bfd5ef278c63 + - 8913ded5-6451-4bd9-8173-38b53e3b37f8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054001Z-17f5d849667q42pgsnc7zsyqc400000006h0000000008qar + - 20241107T055516Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011cvg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,138 +690,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A03Z&sr=b&sp=r&sig=Tf5F6zvdG6NzONnddEGx%2F8zNmHDlW6j5giwRBqPdo98%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:03.8185993Z","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 - connection: - - keep-alive - content-length: - - '557' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:03 GMT - mise-correlation-id: - - 40da1fd6-656a-4d72-81ae-400bfeceaec9 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054002Z-165bfd566cftkzshba71wsxr9s00000006f000000000e6u1 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A09Z&sr=b&sp=r&sig=D2LRCOXWsE0xmYl3920zwB0w6Y1mYoIEcoVt4lKKHyQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:09.1179679Z","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 - connection: - - keep-alive - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:09 GMT - mise-correlation-id: - - 1e210566-9b79-4e76-acb2-20e8954e7c33 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054008Z-165bfd566cfmx6lk7avu3gk81n00000008d000000000cwmg - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A14Z&sr=b&sp=r&sig=j0eqY%2BVKI8lhiP13szFad1KEPAGiC1m3rBgndGLC7kE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:14.4534412Z","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 - connection: - - keep-alive - content-length: - - '557' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:14 GMT - mise-correlation-id: - - 4de6fb0a-ab64-40be-996f-806d26529a6e - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054014Z-17f5d849667h7djshftd289dx000000007y0000000001rc9 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A19Z&sr=b&sp=r&sig=hQ5krnsq7Wmr5Msu3ORrsRpZ89Ebg1XyxyGCQFYpKxY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:19.7871255Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A18Z&sr=b&sp=r&sig=9VIe7Vlpff5NBJs46TEUVdy5T%2Fh3bv%2BQX6cyboh9NiQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:18.1779986Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +704,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:19 GMT + - Thu, 07 Nov 2024 05:55:18 GMT mise-correlation-id: - - 8fd40b0f-e27b-4930-8803-02b831209e66 + - dd4e57d7-043d-461e-a24c-5710852bdfd7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054019Z-18489d46dcc4mwx2ddastu82g800000007ug0000000055n2 + - 20241107T055518Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011d24 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A25Z&sr=b&sp=r&sig=2ZdZj4ucULjSU7V%2F%2BvAVIkKh7aS9O33wi35o5%2B%2BySd0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:25.1603483Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A23Z&sr=b&sp=r&sig=mw60onlQvuCaucsL8wVxuIdSmOLl0Ytyj7Yikh7Pq3I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:23.4356072Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +746,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:25 GMT + - Thu, 07 Nov 2024 05:55:23 GMT mise-correlation-id: - - 099d86d6-9f3b-461f-85a5-beabbdabae7d + - 881f25f8-5efd-4ea1-b54b-aaaaa5d165e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054024Z-166cf497cd4q86sbftw3zaubkw00000007xg00000000kh3t + - 20241107T055523Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011dsg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A31Z&sr=b&sp=r&sig=dRE5GZojVjsz5EK7k8s9ZjL%2FS%2FVkILHF0k5fJ%2BPHRoY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:31.0283159Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A28Z&sr=b&sp=r&sig=AVcShc6a5UQiPyzFdcOqtby1XFNdM1RQyH%2BC561jNIA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:28.7081725Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:31 GMT + - Thu, 07 Nov 2024 05:55:28 GMT mise-correlation-id: - - 3e1e6f2c-c210-4c2a-a15f-add4842a58f8 + - 4e471467-630b-4e87-a56d-e15e19d493b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054030Z-15484bdf45782nr6fa3f22900400000002g000000000737u + - 20241107T055528Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011egh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A36Z&sr=b&sp=r&sig=eyjc0ghY99UqeOYD5458bIncktG3j8E7Q48TWcmkBAo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:36.2818922Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A33Z&sr=b&sp=r&sig=A9mDBve3W7O3s5KmgusR4jMZ3nO0oSkg5ejmq3RYA9g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:33.9635158Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:36 GMT + - Thu, 07 Nov 2024 05:55:34 GMT mise-correlation-id: - - a7167c7f-be94-4a9a-aaaf-471c9ea06866 + - b1f9b258-52e2-4073-bcd2-13aff54df3c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054036Z-166cf497cd4txcnh6qkkc4ez8n000000081g000000003g1z + - 20241107T055533Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011f7y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A41Z&sr=b&sp=r&sig=EM6jZ2bOOKIU3Enop6aNccAb9XT2a4%2B1pZkoZF1PVz4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:41.6405419Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A39Z&sr=b&sp=r&sig=fdr%2BXGIDEgMMGT4NoQub2iF356jyCy6Zk55U54rxrvE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:39.2307811Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1039,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:41 GMT + - Thu, 07 Nov 2024 05:55:39 GMT mise-correlation-id: - - 95a8dceb-f45a-4bfb-ba5e-614a01d88a83 + - 1dc7d018-30e2-419f-8263-0222cb99796e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054041Z-166cf497cd4z4rvk0cprvnxxh000000007xg000000006ech + - 20241107T055539Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011g18 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A47Z&sr=b&sp=r&sig=3BFSoizji4Nma9mD2jO0wCaKbhRpt6hVZw8pCa5FG2Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:47.0168444Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A05%3A44Z&sr=b&sp=r&sig=1Phvf2IfKLb0Tu0qNh8g6xJenaNxXL4IWW1Zd4%2FtYCQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:05:44.7674333Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1081,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '553' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:47 GMT + - Thu, 07 Nov 2024 05:55:44 GMT mise-correlation-id: - - 6f79265a-3c94-4a02-b692-d45a43eb8bd6 + - b2922288-3ab3-409b-bcdf-ea104666fe5d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054046Z-166cf497cd4qwz4p7wbrzn166c00000002f00000000010dg + - 20241107T055544Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011gur x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,13 +942,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A47Z&sr=b&sp=r&sig=Te1BdeQ03w73pU2ZonviwpFp4yLydEvbD7%2FnjMuWj%2FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:47.2824777Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A47Z&sr=b&sp=r&sig=Elhci%2FSiyYdwnOYw2JQl1jQRHoKAx%2BrwNtqeN5eREvU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:47.2827974Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A47Z&sr=b&sp=r&sig=d7SI%2ByRXFqwUCJrRVINh%2FreqmcN8i0ae3g1ontflkoM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:47.2828837Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:32.118Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:43.06Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A45Z&sr=b&sp=r&sig=Vm8G2l8YgITgO0A4nI3dECmM5O2qa28uerexTjI0lh4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:45.0350908Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A45Z&sr=b&sp=r&sig=xUmQ1gj4yC4hJyqm5XC012Tx%2Fs5mBhIPGgvEAWrnfZM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:45.035517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A45Z&sr=b&sp=r&sig=QR422IHXxaz%2BiAxgSI%2BErKgZt6JSVVr89JMmnxLAt1U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:45.0356958Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:54:52.188Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:40.922Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1124,17 +957,17 @@ interactions: connection: - keep-alive content-length: - - '2781' + - '2772' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:47 GMT + - Thu, 07 Nov 2024 05:55:45 GMT mise-correlation-id: - - ae0a253f-3d33-46ea-a9e0-f8fa611d2f0e + - d37b10c6-a3fa-4ee2-9a6c-5e8b812d21be strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054047Z-17f5d8496679hzsmtt458u9d04000000089g000000002tw3 + - 20241107T055544Z-16bf8d9b4c7z9ptphC1BOM62hc00000007f0000000011gx9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1152,23 +985,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:47 GMT + - Thu, 07 Nov 2024 05:55:46 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -1184,7 +1017,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BF5517268BF54C5F80A83E6F3CC15244 Ref B: CO6AA3150218031 Ref C: 2024-10-16T05:40:47Z' + - 'Ref A: DC04D46C0A9A470D87FCBA34D35B5049 Ref B: MAA201060516033 Ref C: 2024-11-07T05:55:45Z' status: code: 200 message: OK @@ -1198,13 +1031,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=YN0OT5EPUNUuLG%2BtQN9Q7jF7Bm90HN7eATZpSOah99A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:48.1462111Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=dDLXIz74rxjPeUdG2mvPcYoaIdIG%2F6xEnyt75UOLn0s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:48.1465217Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=4ZVimxFMAjlgycuaUgzMnf8SZujq%2FmCXzTpaY6MvGb0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:48.1466167Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:32.118Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:43.06Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=wy6Y6HxBwfnf1%2F4INKoEdD8xnybPvM4K5A9LRKvHL5g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:47.9381951Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=%2B8f1Ko9WWimu0tunUolnd71Duc%2BcJwwyDcFVHdEzu78%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.9385259Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=L2jd6Su32PIfnEMacRHxBz1dqY9HrCKtktipxReGuH0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.9386473Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:54:52.188Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:40.922Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1213,17 +1046,17 @@ interactions: connection: - keep-alive content-length: - - '2787' + - '2785' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:48 GMT + - Thu, 07 Nov 2024 05:55:48 GMT mise-correlation-id: - - 18ca8b3d-e78d-4e17-8955-abc805fb6caa + - c6831dc6-06ee-48f1-ab34-a87bea942e98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054047Z-17f5d849667kzjrv7fd72zv9x0000000061g000000001hsf + - 20241107T055547Z-16bf8d9b4c7zbtm7hC1BOMhr0s00000007a000000001ta2a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1241,23 +1074,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:48 GMT + - Thu, 07 Nov 2024 05:55:49 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -1273,7 +1106,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BAEAA099237E466F9036E2EAFDB8621C Ref B: CO6AA3150218053 Ref C: 2024-10-16T05:40:48Z' + - 'Ref A: 27B503F3A4B8436C9FDCB9A099C35E5D Ref B: MAA201060515027 Ref C: 2024-11-07T05:55:48Z' status: code: 200 message: OK @@ -1287,9 +1120,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1302,15 +1135,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:40:49 GMT + - Thu, 07 Nov 2024 05:55:50 GMT mise-correlation-id: - - 0d69f4db-d32f-44d5-bab6-eaaae474827e + - c7e3bb5c-fd73-4470-8b85-fd9215bce4e5 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054048Z-17f5d8496677xw98qrdesns90400000008s00000000091za + - 20241107T055550Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000qzvr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1334,31 +1167,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=kBwdZ9n0YlTkuHdPgGCQUC4G1qw6ORHK5GCNceGwUe4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.2994373Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=N4MzjeKpJgmbPUWIR0p2BmrjXtqjy8YvnIktBX11o1I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:50.2991914Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=45NlHDE7KXLceRZ8siSORKId5foYFN1%2FkhCsfeAWTKI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.2995044Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=X3MMaYmZjDl81bzPq28f4C6gvid%2Bx0%2Bsc3jl5XEt3XQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.2995697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=YoWgDSBduV5LRZwA5yno%2FR%2Fa6V1XhkQxy4feTpKtrro%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.2996346Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T21%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A50Z&se=2024-10-16T06%3A40%3A50Z&sr=c&sp=rl&sig=gRpv54IhCXRnmt8xPMEnuhL%2FKYRo2K6Hu1S0dZ1DsSM%3D","expireDateTime":"2024-10-16T06:40:50.2996955Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.056Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=ocpr8sbxDhICjnHo3304yXvZZZseoqpwNPfJi%2BKbgi8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.946256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Qc7FukoAxShiV%2BMLVRcQb1Ox4fLA5oBZbAX3cM2lHPE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:52.9459467Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Eq8Hb5Nkbmc8AIuVJJGWl5q2rlt2Xj0LxTffWs%2B7yMA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9463648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=BlckMLz%2FNO%2FXJhCMZvylTw0Zg8rb4Mj8%2BR1QJ%2Fnli8k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9464751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=vB8pxABrV94KV5PTsbo2QMh90uQYq2xzvacbcJscwHs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9465837Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A05Z&ske=2024-11-07T12%3A55%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A52Z&se=2024-11-07T06%3A55%3A52Z&sr=c&sp=rl&sig=kF3ah%2FUGNSyIQaZ4w3fk9WUcvnnIJgO7Kfwk0%2BZyObQ%3D","expireDateTime":"2024-11-07T06:55:52.9466828Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"ACCEPTED","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:52.702Z","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 connection: - keep-alive content-length: - - '4894' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:50 GMT + - Thu, 07 Nov 2024 05:55:53 GMT location: - - https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2022-11-01 + - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 3f2691bb-e953-4e5f-95ff-ddc338459705 + - 76912dea-6d6b-40ba-a277-8c1685ae117f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054049Z-165bfd566cfvnfldckvfavskxn00000007c0000000008ayt + - 20241107T055550Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000qzyz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1376,12 +1209,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=Xlr2%2BFJPYkLWa6VTOjvRdIgWRvxEp8yC5PQ0PjFFSAo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.8140483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=doH%2B9l32Cz2D0nxUoR1MTlFWmrttWjQBDp9fnkHS8DI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:50.8136818Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=hu9ZrfhHCYcEuyKtXuwjDYinMZp5Xy%2FAPEDgqcctUiE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.8141501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=mvdpTILEk5H%2FPAnSBJpqGLmSCcVclgQM7xsk7Cz1ksw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.8142504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A50Z&sr=b&sp=r&sig=fV3TvNC4FlRF%2BU%2Bl2f3j7Rt2hYLT0oD6cRo8ag1rEps%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:50.8143501Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A50Z&se=2024-10-16T06%3A40%3A50Z&sr=c&sp=rl&sig=y3oZpOtl71XB3RTjpjll%2FY8hOfHCz%2FR5evUE52LpXTk%3D","expireDateTime":"2024-10-16T06:40:50.8144365Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"NOTSTARTED","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.702Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=xkH7LkvQP2J97a1B7OFlr8c%2FQ5JG0ZjwPCdR2mSNsUM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.3956751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=MUbx%2B%2BqfbymhPLtCZ6QA7oy7Lx9O%2BOlB%2F1SPE1YI99E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:53.3953745Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=eQ%2Fa4okTfm6kEW1NM68PYXrj1rEt5r2m8s33WDQbq0g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.395768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=EhkMkTWSvIAL5GwKk4b%2B8LCMZZC%2BHxuT2Zw1ECTAXaI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.3958791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A53Z&sr=b&sp=r&sig=X%2FEFeRpOOf8bCTkOYBKfF2mAQ4u4JpP8265lkQVvxSg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:53.3959714Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A53Z&se=2024-11-07T06%3A55%3A53Z&sr=c&sp=rl&sig=XNs4ZBtL20LHRLH%2FwiTxVt64mTF4c%2BMEqKD3gaRL19M%3D","expireDateTime":"2024-11-07T06:55:53.3960661Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"NOTSTARTED","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.244Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1390,17 +1223,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4948' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:50 GMT + - Thu, 07 Nov 2024 05:55:53 GMT mise-correlation-id: - - f28c1a28-e133-4c6c-9f23-10b93efe2ce0 + - f41bb897-55f0-4d14-a2de-8120f2db39a9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054050Z-17f5d849667h7djshftd289dx000000007vg000000007101 + - 20241107T055553Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r0an x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,12 +1251,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=C1IBj2M0n9OvHvsbqlX%2FOxEKeD9fD5vC39hp4Y04g14%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:56.1873663Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=F7YTH1xrnlIiYJ3Q3wjCTDkVO8tkVAvIMlmG7jQWjg4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:56.1869392Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=gVYRenPO4v%2FT22jc3kDrNl7%2BU%2FfAq%2FBqq2XaW1jQI8o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:56.1874975Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=9moxQ5igWVQk36II9DRqQz%2BtaHvIMrY5NWnJc7RG2uQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:56.1876283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=1RHDWSjQnqKGD%2FvPSzO8J1IiUB3AIzfF%2BuJlJ9HvTTI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:56.1877969Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A56Z&se=2024-10-16T06%3A40%3A56Z&sr=c&sp=rl&sig=M%2Bi8qhFkIjaqMl4SMFq3Jwo0h41iRrLWk%2BSG0NeHcuk%3D","expireDateTime":"2024-10-16T06:40:56.1879341Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=2EmJR8%2BVJRO5RGei9zjQz07GxYaPSEnb4p%2FoHSGFzQM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6681382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=ojdp6H2HrHL3NUgUGf3zQyJ2y0x7p8l4R4uvXE5LQxg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:58.6677234Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=XitqNTQF0haV4kK%2FsMwTgPOVdUQokv1yor5ST9sLXH8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6683101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=NSsqmBD2vkZuqjl7uOtCNsnw1GAbdKQn9BT13fmhsjU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6684832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=mJOqFDdfnJaxXMNzRzbrqPb60kBkhBMrQtPZ%2BUXwiLE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.6686522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A58Z&se=2024-11-07T06%3A55%3A58Z&sr=c&sp=rl&sig=Lan2s40nHa3wM1XO%2BAjTy9Y%2FSpAdbN2dvGcNqgYQH%2BY%3D","expireDateTime":"2024-11-07T06:55:58.6688175Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1432,17 +1265,17 @@ interactions: connection: - keep-alive content-length: - - '4949' + - '4943' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:56 GMT + - Thu, 07 Nov 2024 05:55:58 GMT mise-correlation-id: - - bf99f2d8-1f68-40ae-8cc6-33d8af84bafd + - 2f156f79-eaec-4e0d-a09e-e01d9f5ffa1c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054056Z-17f5d849667b8zgpx3v75uxdz0000000094g000000007sh0 + - 20241107T055558Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r16c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A01Z&sr=b&sp=r&sig=qsFjm4535QWIMfD4vZQlmeqVpD8tMSPagD%2FEr4ofM1Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:01.4931568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A01Z&sr=b&sp=r&sig=Tqn39cl%2BJjSiBlVzSfVeMOUPJUKYWvutkrnm9xiqtLI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:01.4927431Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A01Z&sr=b&sp=r&sig=mmu673Y8JoBHoCDUR7kD6Pni766SErDMQ4s2JODyhZk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:01.4933602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A01Z&sr=b&sp=r&sig=leFpy714wYqeIdJLos4mytRKy4wQKeH5YCnBH6NQT9o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:01.4935511Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A01Z&sr=b&sp=r&sig=K0JwZONLnZi4eux6uNe8fo0ePF3nCPjK36WLMwM7jvg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:01.4937889Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A01Z&se=2024-10-16T06%3A41%3A01Z&sr=c&sp=rl&sig=P3Tp5gtLa%2B2mV6jP%2Fw8DepUKjpMCHpSBEe%2Bi0HtbP7s%3D","expireDateTime":"2024-10-16T06:41:01.4939165Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=5TRM8KKdED9EqgGfF4gqcI1vFg1MTbYysz%2FOGBb39Gg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9607422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=a0Sq6xJzCRrE3y4y1V8jKhb5JEFHWabVQmADFOn8anA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:03.9602776Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=UMD%2FlylMURv%2F9urrGcUHNbhukXxO2CXKfZJH8VPBp0s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9608824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=NwEKB9GAYHQiklA7%2F9P08cC7%2FnDzSe1HMICDykm2Q0Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9610468Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=MQziVLqUqkzbNdLrhBRby%2FC7m0pCc1uDgjGff03unq8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.9611913Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A03Z&se=2024-11-07T06%3A56%3A03Z&sr=c&sp=rl&sig=n3TSyxZ8CJ8WlWOLp0YYNJ2r%2BjwgpeXpAa%2BVYXU2Xl0%3D","expireDateTime":"2024-11-07T06:56:03.9613289Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '4939' + - '4945' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:01 GMT + - Thu, 07 Nov 2024 05:56:04 GMT mise-correlation-id: - - a71f8004-8173-4285-8870-e15193e946c6 + - c7f9c4f8-ecbc-493f-8fdd-9bb7aa196d80 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054101Z-165bfd566cftg6wfx5frzdn92400000008fg000000009v2m + - 20241107T055603Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r227 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A06Z&sr=b&sp=r&sig=EBsEqLXse4aJ6OnyPTlT90%2Bf6deGRSqzsx%2F8t4PnJyg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:06.6738328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A06Z&sr=b&sp=r&sig=Y2DTgSO%2BPfbPTGCsLmi3CYTCXUK3e7m5JWllrIVtJCM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:06.6735107Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A06Z&sr=b&sp=r&sig=Qu6TuU7UIH21bSMVVhnRTCKy2%2FAydAp%2BO9V0pw9jE7w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:06.6739676Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A06Z&sr=b&sp=r&sig=dMsodilSS2Lo86U0lRCvAPNmTZBYganYqnt46i24e5c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:06.6740992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A06Z&sr=b&sp=r&sig=LFZLVx2oZ2WK70BsaaIMMkLuW3n5mvLtqeBIANg1Hqw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:06.6742377Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A06Z&se=2024-10-16T06%3A41%3A06Z&sr=c&sp=rl&sig=sWNnEDOSxxJA%2BAb54bGn4DTgVDS%2Ff9a2%2FupXq35bu%2FM%3D","expireDateTime":"2024-10-16T06:41:06.6743716Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=tK2kNfTmtRUrfj3RQkF9IB4EN1o1KEt7SQ4%2Bw3InAJU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2232828Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=FYRe8To1HXdzGX9kd2LQNK%2BuwRgybsCb0yWSymC0%2BmA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:09.2230316Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=v8wNh0iljwK%2F7%2FtS1JfQv3SwJVrgni3vKHAuiKx%2FnuA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2233594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=duPSKqv2NBUN6tQHJ0U4jJo6URo72MXFzc3fo0%2Bhruo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2234367Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A09Z&sr=b&sp=r&sig=0ceEsd%2FTpd2Psbzc%2BwnIX5xjs5IfhYTto4llVJWrLHU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:09.2235119Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A09Z&se=2024-11-07T06%3A56%3A09Z&sr=c&sp=rl&sig=KGmFNqhwdBRIvGkxZ6rmfsvdoKiwyL0bKydps0Ob6gA%3D","expireDateTime":"2024-11-07T06:56:09.2235867Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1520,13 +1353,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:06 GMT + - Thu, 07 Nov 2024 05:56:09 GMT mise-correlation-id: - - 10ddb750-60b8-4d13-83f7-66f11fb46830 + - 445f3f42-5ee6-48e8-b7c3-2c2fe6159be4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054106Z-17f5d8496676bkwfhshcac428800000008g0000000008twn + - 20241107T055609Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r34g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A11Z&sr=b&sp=r&sig=PRop%2Bi2uLuQonQWhWXxOVrMRoM5MNVYR8ljePVZgIp0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:11.980336Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A11Z&sr=b&sp=r&sig=mt2i%2F1dSi8%2BBjxx2VV5VfXsNzVORfTJ86LGPs8%2F7KKA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:11.9800733Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A11Z&sr=b&sp=r&sig=rjdmE1%2ByNHDcy9qjdAlaXx%2B3RABzGEjexAFblfrlajc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:11.9804171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A11Z&sr=b&sp=r&sig=1l9k723Pkfb%2BNmJEd%2BqaYc8ykumpvdyh916%2BoWXshLM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:11.980503Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A11Z&sr=b&sp=r&sig=mr5WH8W576hL4nsfu5YcR8DEqnYX8s7%2FNaT%2B%2FnbSkY4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:11.9805996Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A11Z&se=2024-10-16T06%3A41%3A11Z&sr=c&sp=rl&sig=NpNc%2F5HOjO5%2BtQftgsqc0W9JvnSgVlRAxBLtuIETH%2B0%3D","expireDateTime":"2024-10-16T06:41:11.9806938Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=KEB7KcRafHwqYUG9ht2oHtHdD033o9mcZrMh8Ei9ogk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5055319Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=7rYCUzFXKSlOnTq3rRJleYrlKCqFKa0UNetCkpOZMwE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:14.5050524Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=%2Bazr4VDvsNJidTqLBr%2FhKnzwJ1xycAVoKQTUPGgtBdk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5057568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=%2BsE4AssTgnktoznCkMizVJ%2FWVkjeKMEtMplh3tXhjIQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5059403Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=v0BjpjFn3wdESjkB%2B8Aaq3skLMt1Of8HrQl5oPiyB%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.5061457Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A14Z&se=2024-11-07T06%3A56%3A14Z&sr=c&sp=rl&sig=8YytmKlEG7mKtVS7yIWyekKPnDsaVEFbIWuaioGRU%2BA%3D","expireDateTime":"2024-11-07T06:56:14.506332Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1558,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4957' + - '4942' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:12 GMT + - Thu, 07 Nov 2024 05:56:14 GMT mise-correlation-id: - - 23c9eda7-7ebd-4c34-a737-33b46f892c59 + - 822bd0b9-1c0e-4d56-a7c1-2c9e7394c1f3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054111Z-17f5d849667dlw8817rng82bvc00000006bg000000006p5u + - 20241107T055614Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r44r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1586,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A17Z&sr=b&sp=r&sig=kYK6AlWQpyogGImx6s7S96VQd2tQd%2FKxvTuxdcMLhMk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:17.3440062Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A17Z&sr=b&sp=r&sig=VENXhZvqtGh0FZz4%2Fb0OdLQ50JTYn37z%2FMuHEnOUKjE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:17.3434611Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A17Z&sr=b&sp=r&sig=MB2EU%2FmP0zFOnHO1r2aOr1DR9GPOcgymjUaGaQwPWzU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:17.344121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A17Z&sr=b&sp=r&sig=0Ij3KIH1ciQ%2Be2YkRoXeUhkdLyUI62ZqDJcQcqUias4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:17.3444049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A17Z&sr=b&sp=r&sig=7iqf%2BdcOWR%2B5T2FxbCnC9fPEBryjo5m7fiFg9yxJL0w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:17.3444956Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A17Z&se=2024-10-16T06%3A41%3A17Z&sr=c&sp=rl&sig=e6kJy31%2BWzweFSPiM02TaGm46wftFDtluhI69y8WLdA%3D","expireDateTime":"2024-10-16T06:41:17.3445908Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=VLO5Ql%2FfhC9ubjOEmIHq4GqX8c3nGRMharznMWYtpt0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.7790293Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=ulsJcB0cEABtor%2F6VvOoc0mzAVx0Hg23psUZcjgHNqE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:19.7781881Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=3thqQhD%2B3RW1sO%2FWiRP5nVB2zQwIWj1L8PpelRx1%2BIg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.779394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=o6O0MQhp6DwtdSEf2lDt740Zj3ZLX29cYJytBRU%2BW9k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.7797373Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=hmvaxZnjQd7DpXJSHSJvgabtAqCq029HhLP2XHnkLw4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.7800809Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A19Z&se=2024-11-07T06%3A56%3A19Z&sr=c&sp=rl&sig=UY1nT%2FRko%2BsLmAF4UUEYhejZVv5HVoT4APM1E5dRCLg%3D","expireDateTime":"2024-11-07T06:56:19.7804147Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1604,13 +1437,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:17 GMT + - Thu, 07 Nov 2024 05:56:19 GMT mise-correlation-id: - - 600bb4f9-c423-4dc1-85b7-00431988ad3a + - 13fe11c3-f2d6-4b97-b220-0d077f909160 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054117Z-166cf497cd4qwz4p7wbrzn166c000000029g00000000h49u + - 20241107T055619Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r55u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A22Z&sr=b&sp=r&sig=oJwAnk2rHK4bux05iS6JFZ0k8IjntwoCWVOxYzSyBIU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:22.7371953Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A22Z&sr=b&sp=r&sig=YDgt%2BjSsFQNNrYdkhTc2Bw%2ByBNOEHQ3M5%2Bny1g0QjS4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:22.7361112Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A22Z&sr=b&sp=r&sig=QbWLC2bVq9zp6AY%2FO6beDjKzCKyTaENDgD59r0DW3V4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:22.7375119Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A22Z&sr=b&sp=r&sig=Gx2YkF7Rs%2Bi%2BpF7NI6CIeMpVD6jrpXjMtG%2F4ytgbqbk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:22.7378189Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A22Z&sr=b&sp=r&sig=4GpZdHC1wri2Z26ysw50UZjyCCuFvaGsOwVJ7xmDC1E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:22.7381401Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A22Z&se=2024-10-16T06%3A41%3A22Z&sr=c&sp=rl&sig=QqciKKa8iSPIxu9SjaLNoxl8WwS41UvsT6TeRaMmdao%3D","expireDateTime":"2024-10-16T06:41:22.7385011Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=kqLrcGLZUwx7BS4wtNLjDny6owX1b7uu6IqdYhlHgF8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0512865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=PSATukDBw8AIbGA5Rs0DnPhVkPxfkDvOD7F8MzszsWU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:25.0510005Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=K4NbPx9sxU7E3m46Ltmboc0FqSsA9m1427fua3lhtRo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0513689Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=hIfjsxqOuT%2B11xWaO4na%2Fx25lTYuCCuikpeV7Mebsj8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0514513Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A25Z&sr=b&sp=r&sig=F1JQaUlx59BxaSp9QWUOWqj80zAmMaH%2FMwJkvyHXXdQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:25.0515325Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A25Z&se=2024-11-07T06%3A56%3A25Z&sr=c&sp=rl&sig=vlcfw7LlULG95W8bD7UvezcjrCoJdPrvHvSoglfL4x8%3D","expireDateTime":"2024-11-07T06:56:25.0516105Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4935' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:22 GMT + - Thu, 07 Nov 2024 05:56:25 GMT mise-correlation-id: - - 3981f253-a730-4215-8882-1bc65ea84314 + - 9cb441a0-36da-4c0e-8413-4bbd5549cff8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054122Z-15484bdf45772jkjsy4g2ytrdw00000002zg000000006adm + - 20241107T055624Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r632 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A28Z&sr=b&sp=r&sig=mUkKy%2BXPxiRrErd5LZ%2BxJ0mllx28PLgPWMZ%2BzEvp3XQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:28.1241514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A28Z&sr=b&sp=r&sig=Ibc54GOTv00OKAi9qPvgc9Gg20gERkWMbsgKEoWEUWs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:28.1238668Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A28Z&sr=b&sp=r&sig=raE5nyx3Mq4TCj%2B%2F6A4agFEVIQrX3AmiJZ0VRpgg6kk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:28.1242491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A28Z&sr=b&sp=r&sig=%2FpbqekL3QoXmimixF70LkUAqEDGCW4PVU7jN1X3xGPk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:28.1243411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A28Z&sr=b&sp=r&sig=qal1qmJTBI4%2BxAICaBqJYuVDiRxEVKI5oSIUy6sDBEs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:28.1244247Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A28Z&se=2024-10-16T06%3A41%3A28Z&sr=c&sp=rl&sig=woM3nY2vALfCaK77Fc9taXP1X%2BxdBZX6qyU7USWRyrY%3D","expireDateTime":"2024-10-16T06:41:28.1245138Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=AOLZaP8mEQj%2F1HC%2FRj2CmK7CZMoSPIM%2FX%2B8RY35Nzb8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3202322Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=C4sid8kb3RqSV6JKAVX%2BzMcuYgo8QHuwKVknngA7ynA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:30.3197988Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=R4HAzWcnICwuqU%2Bj9sKJLAMCxV7yE8xlKxjH4XVyCCU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3204718Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=spxbQ2dn3Qpw1hplKibuvAMfR2nvOKrnEMK9%2FdncyNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3206388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=5zk4WgcezlZMb2Ck2uBiXbT6hlasO8di7jzSLRUb%2BYA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.3208371Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A30Z&se=2024-11-07T06%3A56%3A30Z&sr=c&sp=rl&sig=W0rGLn0bh8a1GU6UqPv67wEvBg6cVZPCqNzrA%2Bq5dOo%3D","expireDateTime":"2024-11-07T06:56:30.3210464Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1517,17 @@ interactions: connection: - keep-alive content-length: - - '4945' + - '4947' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:28 GMT + - Thu, 07 Nov 2024 05:56:30 GMT mise-correlation-id: - - b527689c-d51d-40de-9956-b2ceed2309cb + - d6903152-51c4-49c3-aad9-dfb6663f69db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054127Z-15484bdf457fxddfyvtw44f6s0000000031g00000000facy + - 20241107T055630Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r6yr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A33Z&sr=b&sp=r&sig=osmAS97nSGwwor8TFEsRAfihISYPQF%2FT2HFoC9A%2Fvko%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:33.5156969Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A33Z&sr=b&sp=r&sig=lhWiX6qdwY8opNJIOMwcPx21CrrrPvduaW0yVyje6Mw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:33.5153262Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A33Z&sr=b&sp=r&sig=lghl8tIOfvwgAy%2FFrbRxDCS9KKEaBqqNkWDw7Acs%2BxY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:33.5158529Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A33Z&sr=b&sp=r&sig=HTi2al%2BuI3FBHRCtbZh56H6punfJNT%2F59MFgGNYNhgs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:33.5159812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A33Z&sr=b&sp=r&sig=V8Mn2eA2FT0maPn1pm2VZTAyuI04Aa9N6ppQfHZJ8Nk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:33.5161359Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A33Z&se=2024-10-16T06%3A41%3A33Z&sr=c&sp=rl&sig=pHhPsNYXFaClZZOkzcHm4YCbr4TjJ%2BS5Mz8WtILhSTQ%3D","expireDateTime":"2024-10-16T06:41:33.5163005Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:50.934Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=yLM8xBGPM6m3tbZZHZzEfOoAjMQDxxVes0py0vAoIng%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5836811Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=DaiAku4JU3gBInlf8x9vxhlTbpKtIeUEkt5wI%2BR0a%2BY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:35.5833177Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=E0PT6OssAdjw3VEv7cWbf6qt9j6FLs02eVjoZnwqx2A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5838424Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=upmbrJoUp9MNKrcRbd6AGB1dwei7NNGOssi4VqNf53Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5839875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=mCYHCDRqTHb79UttwmKkZKSonvGrNicGRpVV7KTWh10%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.5841302Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A35Z&se=2024-11-07T06%3A56%3A35Z&sr=c&sp=rl&sig=A%2B7kI8PK8cgshuqqZh%2BwoSNI030S8SCjLY1KDGex1kI%3D","expireDateTime":"2024-11-07T06:56:35.584275Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:53.508Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4936' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:33 GMT + - Thu, 07 Nov 2024 05:56:35 GMT mise-correlation-id: - - 20904065-f3ed-4ea0-aac5-e988421cacc7 + - 4c77f02e-749f-4fbb-b799-91a2249a1b32 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054133Z-15484bdf457kqcw7c4rchthr0n00000002gg00000000n1zx + - 20241107T055635Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r7ud x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A38Z&sr=b&sp=r&sig=ohi8huZboldUkP1k5uDMng6uz7DSF2Mv5Rdmyjsn9jY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:38.889738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A38Z&sr=b&sp=r&sig=6ByfogVdXLo%2BzQAURFQhAUG74rfH6pgZ3Gp90hIcpg4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:38.8894425Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A38Z&sr=b&sp=r&sig=AtAesVBnge6DAi7a%2Bc5LDFDl41vJdhIQL5dyJd2%2B%2BfQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:38.8898346Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A38Z&sr=b&sp=r&sig=7Qj5ezpavIrzIRXHGoGWiUGU4zmEMGvSYUUb6eS6GwQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:38.8899276Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A38Z&sr=b&sp=r&sig=VRDwEXOUiq1rRDi61BEyfc7dGlMZSjW%2FyDp2t8zgWC4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:38.8900166Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A38Z&se=2024-10-16T06%3A41%3A38Z&sr=c&sp=rl&sig=K9k6XFHmnB0HZGRb%2Bjx1FmELfrxUMs0PCeET2SjxtvU%3D","expireDateTime":"2024-10-16T06:41:38.8901049Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:38.152Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=v02cOBwXb9qocFpouZ1SuI%2FY4C89dTgiYEZnVdZ7Ogo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8528437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=PCSa0zzBJGW%2FMd7WbNfzlCmLyZDmLD8lkGAoAdXI65k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:40.8524725Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=YNtVwA6TP1rjw5MnNWBZTwILoSPYh%2F4Z0oQ%2BlxwK%2B4o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8530281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=tbUwIYqDBR7S70dMs%2FGdXpFAJZ2Trhihql4VIbo7j%2FI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8531871Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=pZL6QR%2BcEXXqt87UeZD7BboDIHrQKeN5RdOgswpsJ8k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.8533442Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A40Z&se=2024-11-07T06%3A56%3A40Z&sr=c&sp=rl&sig=mvbtz4mTbHrpiWD4mmjA4ci4xG6x0jythHJUX9mxkLI%3D","expireDateTime":"2024-11-07T06:56:40.8534839Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"CONFIGURING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:38.16Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1601,17 @@ interactions: connection: - keep-alive content-length: - - '4939' + - '4943' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:38 GMT + - Thu, 07 Nov 2024 05:56:40 GMT mise-correlation-id: - - d5dc8284-eee6-4f1f-bef7-c197d11fc0d1 + - 8ace3c17-5c07-4e6e-ab99-cb3d0418b59b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054138Z-166cf497cd4ljj2qr0tamq52u000000007wg000000004y02 + - 20241107T055640Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r8qp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A44Z&sr=b&sp=r&sig=EAK3pMNz4k%2FiXrtEKv4cFmHeq9VYvCcBjbNoZXYoqYo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:44.2721958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A44Z&sr=b&sp=r&sig=nu4pQJX0LudyiFs5hnl%2F%2BXM91h4ofcpQvHSWnEsusQo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:44.2717709Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A44Z&sr=b&sp=r&sig=KiA6mL%2BrymMjZFhSOQXD7dByB2qWqYV8QhW%2FJjkX%2BFU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:44.2723592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A44Z&sr=b&sp=r&sig=mqoN%2BklnGNRrgDQJsh%2BbC8DPkb9NhKD0%2BBZdO4bJItI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:44.2725425Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A44Z&sr=b&sp=r&sig=Nlx29QjMMU%2FLoaEDT73QRNAHU%2FExWgAKSu6eVSw4CMU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:44.2727072Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A44Z&se=2024-10-16T06%3A41%3A44Z&sr=c&sp=rl&sig=uezIKjr%2B%2BS%2B%2BSxxDhDZIxMLbl7u4t2OgP7%2FyKk531KE%3D","expireDateTime":"2024-10-16T06:41:44.2728709Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:38.152Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=oEm829vaQOY0pToBqb6Yv55evbbE49uBSARWdLKAubE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.114906Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=JBe4UlmjRgCT5YByhUKPaw5wr5d5h8iBnGea7TNpe5Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:46.1144885Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=qKak1Hn%2Bpylyk7eEmTDRHXOB9TW7HN6fBnHdEF995mk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.1150347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=Z2gcGhSLyQAMKvyDsdY%2BW0r%2FAtUuTlpJBNiHxOdrr%2B0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.1151931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A46Z&sr=b&sp=r&sig=8ohrbnZW00Y2WqP0pcIEZidGV%2FMYrRhBN5HHxo8IqzE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:46.1153529Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A46Z&se=2024-11-07T06%3A56%3A46Z&sr=c&sp=rl&sig=d9PKFzAdQlbXhO%2F33XiMvNj3ZZylewH8KEaaLDaP2zc%3D","expireDateTime":"2024-11-07T06:56:46.1155105Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1643,17 @@ interactions: connection: - keep-alive content-length: - - '4960' + - '4937' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:44 GMT + - Thu, 07 Nov 2024 05:56:46 GMT mise-correlation-id: - - 7df060ad-0799-421d-b7f7-d3e39aba44a4 + - cc06ec38-6f81-4125-aff6-693631cd4bc0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054144Z-18489d46dccfp7rz6a82yt7pbw00000007tg00000000gapr + - 20241107T055645Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000r9n4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A49Z&sr=b&sp=r&sig=kGQ9SC5cZgGK9WNBSZSiY3Akvja7r30dzIUE55nS2ko%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:49.539341Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A49Z&sr=b&sp=r&sig=JPGvYGABOEoL8%2BdXtmVumEnedKn6uxNEqCeG8jrNBrA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:49.539042Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A49Z&sr=b&sp=r&sig=F%2FQ9cw8MLwdinI1vPZbbZs9dihZmiJZ9VyI1RAwrhKo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:49.5394383Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A49Z&sr=b&sp=r&sig=Nf9lZP%2BFSlZa8jQso3Fc2oBykngsVMzXduuix3YbvkQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:49.5395392Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A49Z&sr=b&sp=r&sig=su0pMKePelKm9BsDJdr3cQkBTUjzPeoEgRTFFgIlXNE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:49.5396342Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A49Z&se=2024-10-16T06%3A41%3A49Z&sr=c&sp=rl&sig=4Hl8MXnrt2p1yqpYp8r%2BM1wk0c7Tdm0oI3s2mLaJh3Q%3D","expireDateTime":"2024-10-16T06:41:49.5397289Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=YxMVGxpzlsbViup8Z9gxMimrjxPxGH%2B6XIiODcb%2Bfpw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3735323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=GsRbDV8ran8CJjMfAT%2B7NvB92nOfCQ4xHDVeu5jHN%2Fc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:51.3732295Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=E8ZTGcQUDuBSKHFPS%2BL527SKuHP%2FbAIgAVquum9Wg7s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3736305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=re1Fq6HLa0dyRjS4uJXW6Yz2JRF2btZwvuTrzF35HpI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3737213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=vaEXQQD2kGWRWdK0N4kPzR%2F2EzA3zXtGTqXasLCyaOU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.3738115Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A51Z&se=2024-11-07T06%3A56%3A51Z&sr=c&sp=rl&sig=8YHbJ96ef5f%2Fc%2FfBh55iTa77BojTiAT70s6oW8xP%2F7I%3D","expireDateTime":"2024-11-07T06:56:51.3739012Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1852,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '4932' + - '4946' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:49 GMT + - Thu, 07 Nov 2024 05:56:51 GMT mise-correlation-id: - - d25dabf4-cb03-4c38-8d55-51f7b62c41ab + - 3aa3ed91-75ed-4e30-b8be-9642b63ef29f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054149Z-165bfd566cfg77fdsxzeea5p7n00000009hg000000000twb + - 20241107T055651Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000raes x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A54Z&sr=b&sp=r&sig=5P9zQvaL8MR3iKK6tMsq9grW0Mvc%2B06EkhZ%2B8Yi%2FWBc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:54.6734991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A54Z&sr=b&sp=r&sig=ggq8AVXIqOY9Gdr9aBFT6NHfGKtPfQw%2BzpFta1kOsMY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:54.6731296Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A54Z&sr=b&sp=r&sig=%2FgzWtnQxW7knmUqpwSQ%2F7V4Yj8VmeNuoWaB2COsOo0k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:54.6735956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A54Z&sr=b&sp=r&sig=j8EN7ZUqE2TB2VrctgMyUyx8uZMGpf7loir0lNjtYoE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:54.6737506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A54Z&sr=b&sp=r&sig=tljpMITCChbtHG4i0OCV6pu6s%2Bu2O4nyZ0mOsNRL25I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:54.6738488Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A54Z&se=2024-10-16T06%3A41%3A54Z&sr=c&sp=rl&sig=BHF8sZ18DylrS9dB874S%2B8Dv2o4LIfg9V%2Bif9uRqMpg%3D","expireDateTime":"2024-10-16T06:41:54.6739449Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=4kiVv5yAEcjTNnegNTloXw9Skz0wNVIdLmpy5v%2FXCAU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6351751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=pfbzk2PGw1qtDgTgU2UCnK%2F9Vs%2FnqnGF0l0Z84Hds8E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:56.6340013Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=LktX%2FEGrIAIGMUv2O3OUAZYgB%2Fzukk%2FZAGBL0fPc1KM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6353611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=AffYmbw%2FnlwxXj8GgEtpw8WsGPsatb%2FdcrVk6ci00Iw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6355458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=dUVYrd6RgJDA7AfphRuHVj4y6BUIH6Y8MD06c711rQ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.6357368Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A56Z&se=2024-11-07T06%3A56%3A56Z&sr=c&sp=rl&sig=eqy18NkctC6IJkejpqnTKlOGaSkXdaxFHBHL5D7hhWo%3D","expireDateTime":"2024-11-07T06:56:56.6359093Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1894,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4944' + - '4942' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:54 GMT + - Thu, 07 Nov 2024 05:56:56 GMT mise-correlation-id: - - 36cc62fa-12ab-49a2-a278-a68b83ac17f8 + - 436c59b5-d6d9-453e-9e34-fc99ed851819 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054154Z-17f5d849667dlw8817rng82bvc00000006c0000000005bb7 + - 20241107T055656Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rbbs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1922,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A59Z&sr=b&sp=r&sig=pjuiPd1KZi1v6NqbmJeyQcy9UwuanpNNvBHxQllSsA4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:59.9890089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A59Z&sr=b&sp=r&sig=ytKmbzCMUExY2dCccss2thAu4RrP2WWmLqWkCpjYgnM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:59.9885641Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A59Z&sr=b&sp=r&sig=5oxj9ERsRXLJmxKfnnRxGGdL37AbixQJ%2F8qgyOurLPE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:59.9891467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A59Z&sr=b&sp=r&sig=flEs%2Fzre8qB1I0d20cbIH%2F77N1rt7%2F8USa4vU0TtUZY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:59.9892824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A59Z&sr=b&sp=r&sig=5KiSRzSOTzxla6L20pblIrKDUYIWgjddZGp4EwKesHA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:59.9894151Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A50Z&ske=2024-10-17T14%3A40%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A59Z&se=2024-10-16T06%3A41%3A59Z&sr=c&sp=rl&sig=%2FbElGiHQ5tGpohrSKLwRMxpNv15dOutCmmlg993lwE4%3D","expireDateTime":"2024-10-16T06:41:59.989549Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=WwYbbTndWv8Xe2s8YQ48hGnNfAr1Oq1gKMAtXixO0pk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9103885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=%2FQHJgEXGF%2FVv5v6HvvFTYFFFI%2BLTF%2Bil0PRdYDNZPbk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:01.9101311Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=LGsvrrbdAaEW5SXgIunjcz06TzhYiRq1V9Q2B8Kr6z0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9104745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=HNvhZu3Ux7nJYGehpIdbqvOhG8tGv6v4H8cnA8CWoQk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9105361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=ejFOeL66PIOiP33ssdcfDOhHh58LTbhYbICpiOEDdoo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.9105983Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A01Z&se=2024-11-07T06%3A57%3A01Z&sr=c&sp=rl&sig=RSz0RKj7BPXtWVDnV8nAvekkEPwPYPlLsxJzh6tvGb0%3D","expireDateTime":"2024-11-07T06:57:01.9106567Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1936,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '4935' + - '4934' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:00 GMT + - Thu, 07 Nov 2024 05:57:02 GMT mise-correlation-id: - - ffc33388-2fbf-496b-abb2-0b820294409c + - 7c5df16f-44fe-4951-9ca1-455d3ca24da6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054159Z-165bfd566cfr8pkv004hp3fs3g00000005fg000000001r8u + - 20241107T055701Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rc77 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A05Z&sr=b&sp=r&sig=8DXhhKf4ZbhM%2F2mRw%2FL9ieLx2i8wECCdvbAdk7aVX1o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:05.3783098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A05Z&sr=b&sp=r&sig=TMDglo4jN0AMvFw9v7DJusQvHFuLzGX02noaPYHdPZo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:05.3778882Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A05Z&sr=b&sp=r&sig=QuricGjlfIRerrImymYBWyZaymryNRDlpz2M%2FkYMKww%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:05.3784104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A05Z&sr=b&sp=r&sig=3orzi%2FFldu12twVoCjS%2Bkm9xuf6y49Ar550szZHYKLY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:05.3785302Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A05Z&sr=b&sp=r&sig=fdmuXXHXs1%2BZ1U2vZ0E%2BBlN6FNFpD79iYKcnToKVktE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:05.3786303Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A05Z&se=2024-10-16T06%3A42%3A05Z&sr=c&sp=rl&sig=l6pwOWxWETR%2BwaqoNsTupK%2BB7CMRfALNe6GfMLKkDEE%3D","expireDateTime":"2024-10-16T06:42:05.3787269Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=23yU6iOmoyRyhg6qN1eQcrFZdrd%2FVXYalFILa7F%2BdKg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.216919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=Aufo1cFTlGe9Lk91EOWm0%2FjpuMSTAeZhQNJbiuRPdzw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:07.2166577Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=MOkUGm252%2BH87lCA0o3brt2jXfKOX2oNSy1EWMnhqbA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.2169932Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=Hvd0LCnKedXZglEY%2FlIJkW%2BwRUZO%2B5iNtZXjqGcVuUM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.2170695Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=SaT4f%2Bb%2FlmEQKWIsD39Kv4nZKWiuL%2F4p%2By%2Fj3bWcut8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.2171412Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A07Z&se=2024-11-07T06%3A57%3A07Z&sr=c&sp=rl&sig=CXp4xyAkwt5II9a6seubmVfcpgJwgh2eANGSbNrtP8Q%3D","expireDateTime":"2024-11-07T06:57:07.2172096Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4944' + - '4949' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:05 GMT + - Thu, 07 Nov 2024 05:57:07 GMT mise-correlation-id: - - a7fff2be-113c-42a9-81b7-5fd5168f44d9 + - f523d2e0-26b9-42e1-977d-ea2f854fa9a1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054205Z-15484bdf457fxddfyvtw44f6s0000000030000000000mga3 + - 20241107T055707Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rcxk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A10Z&sr=b&sp=r&sig=BGkngAcBrm4u0YGFKU1zRZ95EBmxKQ5%2BZgGzlG3FP%2FU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:10.7066992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A10Z&sr=b&sp=r&sig=3l67mV2AXAp6T5RbaQJzB8Krovyf5t1EAU5LIOa55OY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:10.7064075Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A10Z&sr=b&sp=r&sig=VBzH%2F3xQD0gqggdDpT3RO6RkAnQVGDtUidewi%2BqZkGQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:10.7068002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A10Z&sr=b&sp=r&sig=He%2BIKxs2QMT4IZUEAnMSx4rxUpvFkv7Ua6uSrrftGRU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:10.7068934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A10Z&sr=b&sp=r&sig=smUBOF8kbl%2F59HmLao9HQsrO8LhSdaMGh7Wo0LY9ZLc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:10.7069917Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A10Z&se=2024-10-16T06%3A42%3A10Z&sr=c&sp=rl&sig=ldQ4RzFWtzOpAKlSGTclHg9QJ1FO3GgUUMA5nedw4aU%3D","expireDateTime":"2024-10-16T06:42:10.7070797Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=rtVzByAtj7h%2FLh%2B4SZDRGKQDJMCgooE54QwCYYuCePI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4740801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=1aResVFKsbkM%2FjY0GkBs%2FYL2CWXYz5z18BQ6fN%2BXiIQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:12.4737122Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=LYLIuDZgJKFxIUZFFtlISNuvJvl%2Fz0Hz5AZKHrcv%2FgQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4742331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=EifCEMiWaklYhU7bfoKyRCgXZ0saIn0wpBscmxvUFeY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4743579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=%2Fzjc%2BDQgtClLDj54fdemuzWsowrVzoRHH3rfczsDKBY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.4744985Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A12Z&se=2024-11-07T06%3A57%3A12Z&sr=c&sp=rl&sig=7962LcrEA3pi%2FtDCxXDFg7mn%2BQ3IlbFugL%2FX4KoFH5k%3D","expireDateTime":"2024-11-07T06:57:12.4746409Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4938' + - '4950' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:10 GMT + - Thu, 07 Nov 2024 05:57:12 GMT mise-correlation-id: - - 33d3558b-6e35-4418-923b-f9d1481db67c + - affa4e52-0795-4c6f-aba7-c8db82c3b050 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054210Z-166cf497cd4mqn5ksypuy7gvan000000083g000000002m37 + - 20241107T055712Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rdpy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A16Z&sr=b&sp=r&sig=xKpJCbsHtMrSq%2FfAnNwSZ%2BZ%2BCr3DuANbrPnXOePQJMg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:16.010027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A16Z&sr=b&sp=r&sig=jioRzukSf%2FwSr5GzU2OIlUxJKyFv8inNH%2FHAl5WizyQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:16.0096796Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A16Z&sr=b&sp=r&sig=vEytcMHDxONGiijBL1AQX9o7%2FxME858zuf7E6PVrvkM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:16.0101619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A16Z&sr=b&sp=r&sig=xSB9bNV697iprV%2BkBKmsKwQ2Irwu2sfYD6RX3H2i6xk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:16.0102985Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A16Z&sr=b&sp=r&sig=wHbXr7gzfOIrrGZy%2FkkbFRlPZNeebAgZrKVvAgO7aF4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:16.0104796Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A16Z&se=2024-10-16T06%3A42%3A16Z&sr=c&sp=rl&sig=jg%2FnuILTyQhDsAfoKpWCQklspBkx5CR1B5yBxnWYvYU%3D","expireDateTime":"2024-10-16T06:42:16.010599Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=FegnOf8kOT5EwFW9ZJLnJ2yw9glZ5g3sp%2FNkJiL7SEo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7375691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=QeTVV8V8N0yj97uuUY0m0EY3306BmywEN41JddrfkU0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:17.7372338Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=vZeEZRLadNc1NwcCmKhzUlzjimb5OBxO2Hv4sTM148k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7376941Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=gKOGdfoHthMJdTMmsqe%2FMBjAETkW%2Bf0pVstJb6vblvo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7378354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A17Z&sr=b&sp=r&sig=uP4tc%2BXS6%2B%2Foy5ffOYOKgDIafqhT1OsmmX7YyBQzC58%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:17.7379523Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A17Z&se=2024-11-07T06%3A57%3A17Z&sr=c&sp=rl&sig=WeP6z7P2OdZ%2Fs1KPMyxspxOIz5y%2BTui2%2BXy%2B27zG8LE%3D","expireDateTime":"2024-11-07T06:57:17.7380702Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4942' + - '4946' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:15 GMT + - Thu, 07 Nov 2024 05:57:17 GMT mise-correlation-id: - - e017a649-aba1-4bba-bdf4-42d5b683c5b5 + - bbc1be4e-4d0a-4484-bf98-5e4fcf5e3d33 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054215Z-165bfd566cfwjg8lbgwdvhqf0g00000009r000000000dnhq + - 20241107T055717Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000ree8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A21Z&sr=b&sp=r&sig=9BSiGBriJVQ1%2BOTOje8fNkUTfzaQ0NH1iqIOGIQg8Co%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:21.3289061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A21Z&sr=b&sp=r&sig=1LB2ISaU1fbCKoN9Aq%2F9qlfVtbjyYiXiXcOrbUU63NU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:21.3284507Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A21Z&sr=b&sp=r&sig=DcJIkOKZi6odhwfHekP7q23tLnGM%2Fa0xUKl77RwRXLA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:21.3289951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A21Z&sr=b&sp=r&sig=WpnCAW3eB4771hzNfckOj7dgTzaeWr%2BSDgDUAnHRaVk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:21.3290852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A21Z&sr=b&sp=r&sig=KlB%2FyXwPKYLHIO4Ir%2BWdoyGJFofoL%2FRc0W9zD%2FGtMFY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:21.3291755Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A03Z&ske=2024-10-16T12%3A40%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A21Z&se=2024-10-16T06%3A42%3A21Z&sr=c&sp=rl&sig=Xw6m68WAf3MOph9jK8jykX9b6TYNCNp9UlYoQZxd%2Bl4%3D","expireDateTime":"2024-10-16T06:42:21.3292583Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=pcQY0KQCsNB%2BrNslTGFlHvCBrphWtw4bSNNCp0yzvhE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9952211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=rDfjIY7Ehnr8CKlIWzEm4bOAIJ%2BpIjVVGWGVWdzT0HU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:22.9947341Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=2B6VlqOEid2M4YvCiMhWos9qJ2ivgiGvRJ%2FL07Rq6cY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9953845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=4GT3eaWRuYLKdXsJaAcVsXk9kkPIajdsLWytsft9HJE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9954725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A22Z&sr=b&sp=r&sig=uNLtn74OWifam6vQPS4jioXFP9dLhRvIDpNSB9pV89g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:22.9955545Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A22Z&se=2024-11-07T06%3A57%3A22Z&sr=c&sp=rl&sig=DNNM3omxOCKOBZYfMPsIpqGPOsF2AVxqMHDk6LNY5JE%3D","expireDateTime":"2024-11-07T06:57:22.9956381Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4944' + - '4932' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:21 GMT + - Thu, 07 Nov 2024 05:57:23 GMT mise-correlation-id: - - 046d206c-e48d-47b0-bc96-dad04b8ed0af + - d5a238c8-87bb-4cbf-9ac2-b87fb95ad1f3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054221Z-165bfd566cf75gpsgsd9yyp22000000006gg00000000481m + - 20241107T055722Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rffs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A26Z&sr=b&sp=r&sig=vvyCHIcEbTSVqCjgow3utPQbjffoCPmo0sq%2FKJfKQpM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:26.6144337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A26Z&sr=b&sp=r&sig=eqYvLRkhQ9aeKF9LjTugmwpUgr%2Bh4f%2B2VU3jbCNRtBg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:26.6139255Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A26Z&sr=b&sp=r&sig=emWTR8ZJ4GHSR8piBfRIWxdDPMiKDKyuFOaZktvzAdQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:26.6145855Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A26Z&sr=b&sp=r&sig=1zVDfJC2O7lwmjTll1nSvUTWdwvMNgZ57dUaUwzrTGI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:26.6147014Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A26Z&sr=b&sp=r&sig=Q8xst%2BKNuQN%2BUEJn3A7IAGWzUUbnp5Prp5iINwPRHSU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:26.6147991Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A26Z&se=2024-10-16T06%3A42%3A26Z&sr=c&sp=rl&sig=mpLcG7iOrZruRde8cXmNUCn2a09v01RTtpRC5K9NAyU%3D","expireDateTime":"2024-10-16T06:42:26.6148929Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=EXmaijQEw5DBhjHvhLJzgni37eyKzjt%2BkqVNRbU1WcE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.2644454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=I01cCjS3YKbIE%2F3NpGy5%2F0%2FsdkDjaVBD6nh2RxeSs2Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:28.2640206Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=tvY6H5tAfMD75zFdX9EgWuFyHPJ8jemwSHYlbkrFRh0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.2645374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=lfXgVEuboewhFx20WT6OBKcR8MWk9xkCa5V7oA3GV3M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.264629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A28Z&sr=b&sp=r&sig=Mb8i6OnPpchG%2BhuOkRM9fF%2BKaSQ6kJBfDqJcgOhpdUk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:28.2647211Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A28Z&se=2024-11-07T06%3A57%3A28Z&sr=c&sp=rl&sig=yU2Tgeve4Jf5KdzNIufmlCJOZWsGyD3mcyvKcDQzaEU%3D","expireDateTime":"2024-11-07T06:57:28.264812Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2150,13 +1983,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:26 GMT + - Thu, 07 Nov 2024 05:57:28 GMT mise-correlation-id: - - 4f412351-39e3-4d95-9838-21da631208be + - bc50962f-007b-42e3-9115-23d8b92d61f4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054226Z-165bfd566cfr4rxnv6rawx61b000000007qg00000000b896 + - 20241107T055728Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rgd6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A31Z&sr=b&sp=r&sig=8oyLCBeb3Paj2DcP11P8nFySrSmEpORfdIzroeiE3EE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:31.9306006Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A31Z&sr=b&sp=r&sig=9i0UG3ukSIWiPEg9%2B9yaP%2BcnnXGxKnhdw0Q9RyUfPk4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:31.9303172Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A31Z&sr=b&sp=r&sig=ebScPcjBY80vOTupene7o1WgRtIqyAXg1w1NZJQcjAs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:31.9306975Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A31Z&sr=b&sp=r&sig=YVRkYrsYbN0uZhPk77FtHkkws7%2Be%2BmObY9YbnfNn2Fo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:31.9308259Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A31Z&sr=b&sp=r&sig=42NVOLVUIg%2B6gYN0jpJQFUbRVSKUrVs%2FCKRIs80zw3g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:31.9309258Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A31Z&se=2024-10-16T06%3A42%3A31Z&sr=c&sp=rl&sig=sfr%2F3HRFclS%2FKnD1eWfmHWG%2BOYomjDN6XTuMJ8GC02g%3D","expireDateTime":"2024-10-16T06:42:31.9310198Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=YLIeJYXwDl5sTrcXQfIL%2BnRTCjI3pPDp1ZOrvQS0Igs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.5313627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=8kRxpPm3VbBlAwcpAI1Y%2FoyKODqkj1PfoPuHnGWRkFo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:33.5309752Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=EDlt%2FYf5Oy%2BU9wWjqo5PzF2%2Fh4zjZM9vz35d0w1KcGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.5314537Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=eGuCxewRZufpks64sAT3zJMu%2Fl1QOBlHjATlx6U5WI8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.5315454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A33Z&sr=b&sp=r&sig=9nvWOAc4o3fBWJSCzi58KRM3i5h6Q6RHgTYt3Nt8lCQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:33.531642Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A33Z&se=2024-11-07T06%3A57%3A33Z&sr=c&sp=rl&sig=DbsZ76X%2FKzIzGSAnb26El5KZARc6IqY9fVUmMK9nVXY%3D","expireDateTime":"2024-11-07T06:57:33.5317322Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4944' + - '4939' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:31 GMT + - Thu, 07 Nov 2024 05:57:33 GMT mise-correlation-id: - - 3147601c-1ca8-40e2-871c-e7c796a62df6 + - 02f59079-36b5-46f3-a30d-9967d7d8f5d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054231Z-17f5d8496677xw98qrdesns90400000008pg00000000easg + - 20241107T055733Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rh68 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A37Z&sr=b&sp=r&sig=GKCFZlQ%2BqmY7D1vuJGQic8pyyeZOGPKzvr6iUAN80MA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:37.258712Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A37Z&sr=b&sp=r&sig=N80B0yLdipatf8d8tPcq2MftEE4Z%2BpjTZXtIm%2BbDn68%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:37.2584416Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A37Z&sr=b&sp=r&sig=maqNI85TlJ5CovRxBRbNkAzCkGziJQghaPY3IAhOYSg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:37.2587954Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A37Z&sr=b&sp=r&sig=EdmlAcFBfHGvlPdxMItWfOG%2F%2BUVQLEIdLoen7uw0g7g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:37.2588894Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A37Z&sr=b&sp=r&sig=EWP%2Bo%2BeLZ5EGcL50WIY6x9ebwpJL1pL3DejgEayKe04%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:37.2589685Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A37Z&se=2024-10-16T06%3A42%3A37Z&sr=c&sp=rl&sig=oPPY99rSjQwFAk6rK7pxy3DTFpiL61Dx%2FQkmkAU%2BNaI%3D","expireDateTime":"2024-10-16T06:42:37.2590501Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=FqIVu%2BnzufwwFcTmOsffE7g1Z80euR0Az98urEfLkdI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7915255Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=Tsm9txxhC9uHAeSS7bb74rn9hUHMCOkGj0NT2OQwHhc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:38.7910954Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=Ta25SM7MW9rbWMPk3RQH9IIfXTB4%2Fs%2FiELj%2FnQEFooU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7916976Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=ejHdm2zcEUXQsSN6koR3GOLdMggAxAfBVaAHkHV2KVk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7918722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A38Z&sr=b&sp=r&sig=jDCuGFO92Soqnx3qhmsJ0VaqStrUlxc6QF2JQb2IyYs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:38.7920416Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A38Z&se=2024-11-07T06%3A57%3A38Z&sr=c&sp=rl&sig=%2FBNQuyZYtlwbO9BM%2Fb9cU4bmMZvATqbxwviR7kR7ssc%3D","expireDateTime":"2024-11-07T06:57:38.7922122Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2230,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4938' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:37 GMT + - Thu, 07 Nov 2024 05:57:38 GMT mise-correlation-id: - - 443db651-b985-481c-b081-c9f11529113d + - 0d2efafa-9d9a-4eea-a56e-635902fc10a3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054237Z-165bfd566cfdmznfsy8bqd99tg00000009rg000000001p4v + - 20241107T055738Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rk1u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A42Z&sr=b&sp=r&sig=cjaeV7efxJ3mmzyqfFnJl02inSlD%2BZseNE7KlTklMN8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:42.5702943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A42Z&sr=b&sp=r&sig=%2BKthJ1RH9cKxzzsHmEPddWVVRoP23j4yk1%2B8sSQq63w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:42.5700265Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A42Z&sr=b&sp=r&sig=r6iOb2y%2FVKPJjED%2Fu4evln%2BtObiUd2nMwyP7pKrvUJk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:42.5703761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A42Z&sr=b&sp=r&sig=nhyByxO1%2FGaz%2Bjzw%2B99Xca5OkLa1gZ%2B%2BhS3Y8Zetm%2B4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:42.5704605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A42Z&sr=b&sp=r&sig=RbhNDihcT6hjRSG83Jbp6aF6u7rmAAB0MYM112qsVbs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:42.5705383Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A42Z&se=2024-10-16T06%3A42%3A42Z&sr=c&sp=rl&sig=QrElePhHSnkU6fK7rlzQMge47BtMNKb195c0IoZr5bg%3D","expireDateTime":"2024-10-16T06:42:42.5706137Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=1e0YIEpIttCSh9om1455UBzKZE1Bt4QDrgvFQfcOp5A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0638732Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=2WIe%2F4VLBiXdYXMELHjoXj6xf2m7AcoTH0WgqrtE6LU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:44.0634471Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=pfjRZasKRA%2FPOcSYcqqle8F0lsEIz5nIxfqXzlE6XPU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0640199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=UDYWoJkta6XdlFvO1qp%2BhNyFtjbHMPmVB%2FThh%2BYL5rQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0641442Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A44Z&sr=b&sp=r&sig=zPDBsrFwxZ2PeCxTCY8Ec20xhfQkXojLoBZ1lmgSJsM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:44.0642915Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A44Z&se=2024-11-07T06%3A57%3A44Z&sr=c&sp=rl&sig=xB1lh6DBZdT9O1CUFdI1p4IE1mC8wHy%2FL%2FZXXmLO%2FyY%3D","expireDateTime":"2024-11-07T06:57:44.0644307Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2272,17 +2105,17 @@ interactions: connection: - keep-alive content-length: - - '4950' + - '4942' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:42 GMT + - Thu, 07 Nov 2024 05:57:44 GMT mise-correlation-id: - - 85e9f849-52bc-4036-ad24-2b5c69a662dd + - fdfe4bd0-4ab2-4b0d-a05d-ad87ed7214ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054242Z-165bfd566cffhs2674zxz6xayc0000000970000000002m5y + - 20241107T055743Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rkwy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A47Z&sr=b&sp=r&sig=REhv47Uh4daapyCCvqz2wXrP27sBBejWvUpzmi9Ru78%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:47.8442721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A47Z&sr=b&sp=r&sig=CQ6OhDxnC651XUwAjtEJr4UU6ly64b1tsfONeyw8ZOo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:47.8439348Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A47Z&sr=b&sp=r&sig=LcxbeONHDPgVnxs5MYOEARpFrBbEkOmKJxBkHQS%2Bh10%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:47.8444069Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A47Z&sr=b&sp=r&sig=cBhzov8SveamA0hQG0QxPlgnG1aZywjv8iUvf7wGUr4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:47.8445458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A47Z&sr=b&sp=r&sig=h0mfY35%2B3agUYxd5HLeeDXNPMw%2FJVNw864Zf638mpWU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:47.8446959Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A47Z&se=2024-10-16T06%3A42%3A47Z&sr=c&sp=rl&sig=t5o6T8vDVcx8wqhleVUYqYZnznwTt7aNau7g97nnjLQ%3D","expireDateTime":"2024-10-16T06:42:47.8448381Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=agyPtF%2BE3Gtv%2FiccsDhH2w%2FC33aG6UbWVYvCUozU9ls%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3281747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=Nv0UOgj2yeQRbjGLyuUBKlFFVKorNIij6F3FOVmASw8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:49.327813Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=IiAAVGes9dbj9DG2VhfGpSbuiql9k7J0S1Z0GVL1iGc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3283192Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=AF2V4DrxGcerzw8GRvNx8aW6DUQsg4tQDEnfIp0ZQbY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3284655Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A49Z&sr=b&sp=r&sig=rLK2N%2BSndmamaBBfRHOgjSPo6duc5jUqko51pcgi4kU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:49.3286047Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A49Z&se=2024-11-07T06%3A57%3A49Z&sr=c&sp=rl&sig=eVRFSY5CeVkvNEXAbK53BNdqjPvWPjyyE004jIIlh7U%3D","expireDateTime":"2024-11-07T06:57:49.328741Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2318,55 +2151,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:47 GMT - mise-correlation-id: - - 4436463d-9aed-4244-9ba8-c2067bf421e8 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054247Z-165bfd566cfrkkwgwcytm810s800000005v000000000h4by - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A53Z&sr=b&sp=r&sig=oE6%2FfRu22OaMNxLjQMsWxKxdnTiNrOe1eaijsnxYhoE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:53.1546149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A53Z&sr=b&sp=r&sig=VZz1saPh6BcPqHmYr2lNEtRppbIDGQdp2pNRw9PyT%2F4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:53.1538861Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A53Z&sr=b&sp=r&sig=MusW8dX9evg07492%2Fn%2FXEeMMwHcDpt%2Bf5EelmZBlWsQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:53.1549383Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A53Z&sr=b&sp=r&sig=8IE5DjAoRpXkW0RsLVJkQnPqZq2aENbpVOIKX54ZcHM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:53.1552826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A53Z&sr=b&sp=r&sig=pTa7GpRC1JAZxcECfcfehKyJW5%2BHuLgJJHMc189bflg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:53.1556295Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A53Z&se=2024-10-16T06%3A42%3A53Z&sr=c&sp=rl&sig=e7uWL1LZwtAHshrBYfmGJ7fTEzXeWqSPB8NHXG4itO4%3D","expireDateTime":"2024-10-16T06:42:53.1559361Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4938' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:53 GMT + - Thu, 07 Nov 2024 05:57:49 GMT mise-correlation-id: - - 4e0ee747-ed4e-4e91-825f-db5500b5eb81 + - 309d2ad2-3bb4-4df1-ad67-b7eb49450133 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054252Z-17f5d849667h7djshftd289dx000000007sg00000000d9yn + - 20241107T055749Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rmxt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A58Z&sr=b&sp=r&sig=osu5eC8nVU5Ve%2FqqZtiwYifAmDOARtF4dnes4mvwqdc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:58.4436496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A58Z&sr=b&sp=r&sig=e6ecpuEpIbaW835nqHbEuaWiv9RcOSww3lf8ujTvMao%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:58.4433752Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A58Z&sr=b&sp=r&sig=pcfADXYpe6%2F7wCpwh%2BZ5RKluYve%2Bj5NPWSqGAyZBM9U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:58.4437415Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A58Z&sr=b&sp=r&sig=XmliKAZw7HmDwJVJsTUR2S1hpSfTfQI2PbIriGxvncA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:58.4438325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A58Z&sr=b&sp=r&sig=Jq%2FLbJkv%2FqrUqdqXOSpZjN9u1LTzjoqq8Rq09oHGnLw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:58.4439269Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A58Z&se=2024-10-16T06%3A42%3A58Z&sr=c&sp=rl&sig=dqSwRJ5HUSw3R6XZ4M0a%2Fhcfr%2FbhDVMsvmnXPbPb824%3D","expireDateTime":"2024-10-16T06:42:58.4440223Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=9ca7zU3OiGVvvS%2FjVMOWFao%2Bf1AR0nOzZYDMDeQfS68%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5929272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=OwVtC0cqEgl81AGixMcTbjt%2BmufnIdXqvDXUFINj6Rk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:54.5925036Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=9e9IlMhebqUscgc6l1BSxDiGNCmwmfLk%2BxYFTQ%2FK4VQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5931188Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=8QkkZIytGmTTh8eVetps4AHKrpHRCNbBwDi7AXTvGKE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5933077Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A54Z&sr=b&sp=r&sig=T7ukd9GnYuZ4IYF7C5kl1tfWr2qb2Nhg23foplDYoJg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:54.5935008Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A54Z&se=2024-11-07T06%3A57%3A54Z&sr=c&sp=rl&sig=UAveHT5KK9h4pgyn%2BEdBi%2FnHWhmgwQBjeSyDKhq%2BOEw%3D","expireDateTime":"2024-11-07T06:57:54.5936956Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2402,13 +2193,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:58 GMT + - Thu, 07 Nov 2024 05:57:54 GMT mise-correlation-id: - - 5aa11ecc-ee79-40e7-a28b-1425794eafca + - 9fdb3a1a-d7af-4151-b703-f624c0d3c1be strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054258Z-17f5d8496676gwdk938uh0325000000008e0000000009m97 + - 20241107T055754Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rnph x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A03Z&sr=b&sp=r&sig=IyU%2BnvT%2FgC5KU2Rck5z9ylKYlRcW16Y5GK5OPjbbzAk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:03.8171732Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A03Z&sr=b&sp=r&sig=UML1WlyhRZLL4dHCx8oPruxbxIkXkt41s5kJJGM%2B0FU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:03.8167339Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A03Z&sr=b&sp=r&sig=vIuoj3DZAQDmkNc9AywdvRED7D8ZxCj1LZW7tpPbJJM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:03.8173753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A03Z&sr=b&sp=r&sig=L%2FjvadrwolIBRWdBAOy92DUXL2o%2B7WwJvdg10GvDiN0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:03.8175049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A03Z&sr=b&sp=r&sig=Fqf5yya%2F0TcCxoiL8hoPnlInRmSHriv5b3UUdmI55ls%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:03.8176148Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A03Z&se=2024-10-16T06%3A43%3A03Z&sr=c&sp=rl&sig=aWX%2Bn4qJ8I9MySXpw2G%2B%2BUQkXVmGc7edK0RmZ22g9NA%3D","expireDateTime":"2024-10-16T06:43:03.817707Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=0q5lMQCAU6YwYJlWV3goJ9bfy%2F%2Fu1ESSN0XKYjG0cg8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8699417Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=FUNblJNNsojBY9DNq6Hlcce0yEo9d2CXtEMZmUWXgFQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:59.8694272Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=DHzRB1hOnfJk1eq4BDo99s%2B9k5qFMMBVj4W62DOviYU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8700375Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=f1NC7qdYS04tPDFLgisVrJGJ6jpIq1U%2F8f9%2BJu6gn14%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8701328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A59Z&sr=b&sp=r&sig=6USoEEDhj3POGFF72MDg3Ncavl%2BrugB0FhEG%2FNSg%2BDU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:59.8702014Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A53Z&ske=2024-11-07T12%3A54%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A59Z&se=2024-11-07T06%3A57%3A59Z&sr=c&sp=rl&sig=DyxVI9%2BP5UNJL9mJ%2BYeKnhsmVPFpgO2RX7CORay%2FRZo%3D","expireDateTime":"2024-11-07T06:57:59.8702612Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4948' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:03 GMT + - Thu, 07 Nov 2024 05:57:59 GMT mise-correlation-id: - - 3c9208fb-c77a-4b89-abc1-c5e3ffafeee4 + - 5c2ccf1d-ebc8-46cd-a109-88d0a6220244 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054303Z-166cf497cd45mnb2hc29k63vhc00000007t00000000088ax + - 20241107T055759Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rpfe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A09Z&sr=b&sp=r&sig=lcW%2F07FutM12%2FGq2hAD8AbNl%2BRlTxl%2BhC9el%2FKPam6U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:09.1771642Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A09Z&sr=b&sp=r&sig=YVneGzwAbunVEUHJwPbHp5lrfS2o4OzKlgj50EeVjE0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:09.1769321Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A09Z&sr=b&sp=r&sig=juWmz5ElsgCjjz5Wq3BoP9iBtiKk%2FjoH6CUkeah5yU0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:09.1772306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A09Z&sr=b&sp=r&sig=8zRgbwL5mD6niqKTo4chlj4d8T5hmZFEFf2wOG0BGSA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:09.1772952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A09Z&sr=b&sp=r&sig=jzfZxT8gdU7xiQ6N0WEeLX0vHIryGqEsO%2FFre3oyg1c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:09.1773585Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A01Z&ske=2024-10-16T12%3A40%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A09Z&se=2024-10-16T06%3A43%3A09Z&sr=c&sp=rl&sig=%2FNb5NCkf7JkLKPRQQr2JUYJ79KewZ2twowRmnnC7jn8%3D","expireDateTime":"2024-10-16T06:43:09.1774215Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=cKfy7F0Yk1k2bpeHKLQ0uDo8QR6GBBfFRBUOIKJ7PNE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.1421614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=p43njSW3kBF%2FOQ2jMqRrvFEmnYo8afDLrVSdWGCKZZ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:05.1415588Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=kBDL3paOaSxyHosY0cfvYFDhvWdKFzBAS1rC5pJANko%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.1422693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=ocMdl2%2B79tuYcmCbb%2FWfqYAh0apyiWCcn8DaZXIIMiY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.142359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A05Z&sr=b&sp=r&sig=k1ldcchDB9%2FgOhBugdUN8c9tKmSO55wxz93pCEStL0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:05.1424481Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A05Z&se=2024-11-07T06%3A58%3A05Z&sr=c&sp=rl&sig=UicVbWRGCm4Z%2FPC3r74E9JOSjvOzxiycMkNmzRzZpeA%3D","expireDateTime":"2024-11-07T06:58:05.1425323Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4942' + - '4935' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:09 GMT + - Thu, 07 Nov 2024 05:58:05 GMT mise-correlation-id: - - 19068dba-711f-456d-9af6-7d82fa2ee541 + - 0ea39ee7-b64e-45ff-a550-93f38b1dde21 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054308Z-18489d46dccd6w2hyw4dcpanpw00000007xg00000000dev5 + - 20241107T055805Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rqan x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A14Z&sr=b&sp=r&sig=s9rNOH%2BKlquC1OeRNgWZ8qWqG4Fa95%2FgZV09Rz5Jv2E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:14.550834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A14Z&sr=b&sp=r&sig=JhmxQr0yntzt0Fws%2FbmVYrJmC7Trn1Ss5xUAiSC7u9c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:14.5505748Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A14Z&sr=b&sp=r&sig=8zNR78rjJYtdVCRSoUcMgmwIknjIyFFxLyPUDE0Accg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:14.5509238Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A14Z&sr=b&sp=r&sig=hggxzykfg8hO13r8Yuacxb%2Fh1MXRm%2BsPwpunM1Po4PQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:14.5510053Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A14Z&sr=b&sp=r&sig=QP5OYe1uCX%2FSsYh4rFjdGkaVO8Nx%2FXO9RZdLkWODvGI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:14.5510957Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A14Z&se=2024-10-16T06%3A43%3A14Z&sr=c&sp=rl&sig=YmOpkE4FwSb6ZuMWf1mpUiMvfBXmHf6greHgnlxM5Uc%3D","expireDateTime":"2024-10-16T06:43:14.5511795Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=6uHvdkeuR%2B4WAWKX0gXYTSkHdcrstAIxOtCYEfIYuDc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4024538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=tG1%2Bzum%2FtdQnrMFRH4c2me%2FqB9P2Fi1R9K4xIoVhyF0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:10.4020336Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=RUg4yRlha5qvc%2F0%2FxZ%2BUNeEu29ySllpNmxPLYeW1ouk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4026274Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=jFlhN5XPVasIiFItjlcWSoJxVP20RfvhAXx8GRrVEpg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4028123Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A10Z&sr=b&sp=r&sig=wGkflPS6Scp%2Fd%2BevRto9PXRQkWFQ7%2BfQGO9hYdgGYGQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:10.4029887Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A00Z&ske=2024-11-07T12%3A55%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A10Z&se=2024-11-07T06%3A58%3A10Z&sr=c&sp=rl&sig=E%2BOgIq3DF4rC1JZjCOKpFRhHstSYKsrj9Nr%2BAS6pPcg%3D","expireDateTime":"2024-11-07T06:58:10.4031623Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4939' + - '4950' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:14 GMT + - Thu, 07 Nov 2024 05:58:10 GMT mise-correlation-id: - - 48972d09-fa5e-43ab-ad01-b9ffcb75626f + - f04f0250-fe61-49a9-9aa0-c1092a4ca7ba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054314Z-18489d46dccj85r8e2f8g29m28000000082g00000000570v + - 20241107T055810Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rr5g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A19Z&sr=b&sp=r&sig=y13zBCGubkyyqca%2FJH0r0vTCWzIBjDZLjShTAc0zzS4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:19.8733117Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A19Z&sr=b&sp=r&sig=DdFHoKHoECbbUxW7UrnqtvherP6aULzJHc3qgZI02G4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:19.8730824Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A19Z&sr=b&sp=r&sig=yMoRi0nzj5VjZicnrQEC6Vpq3QtTorXz6IKL6Vz%2B4Ik%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:19.8734089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A19Z&sr=b&sp=r&sig=%2FCCJe3qzkHtpBo6u7zGQSZQDnke9K8TMXvm0aZD49Jg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:19.8735021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A19Z&sr=b&sp=r&sig=Z8scysOU0WVLjnKVwhOJGQSTFFIBloBeb52rW9hUaQ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:19.8736002Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A19Z&se=2024-10-16T06%3A43%3A19Z&sr=c&sp=rl&sig=%2BQ9Sj7c4wHAkZ35g84ZBQxi5WYFcIb5tlvxfvSUxDHc%3D","expireDateTime":"2024-10-16T06:43:19.8736904Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=WH3M0v197QystYpMJrqB3BoJntI5PD2ISzfnDbEedVs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6854788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=4hxiVWQ2NRLEHnzP2otaWdeluhzMSxRvagxi51PU4As%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:15.6852343Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=QVWxKuKJoX8zassuFW8r1mDNfaRw1dMToXmWHM9YHjg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6855432Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=C9NDeakZ7zrZXTH1S5DQJsVB%2Ffh7H%2BIlg2mTmiWLtQw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6856045Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A15Z&sr=b&sp=r&sig=EDVtHXvWQUdCVZiTzROg2jUQAXnbRlSAwxxBzIV1peM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:15.6856653Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A15Z&se=2024-11-07T06%3A58%3A15Z&sr=c&sp=rl&sig=Tde6QNCCAHFKe6RsqxOOtHNHHf3FdOMJsMaquxF0e3g%3D","expireDateTime":"2024-11-07T06:58:15.6857254Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4934' + - '4930' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:19 GMT + - Thu, 07 Nov 2024 05:58:15 GMT mise-correlation-id: - - 860848a3-6345-42ac-aba8-8d51a50f0fc7 + - 8b50137a-a5ac-40a3-91a3-cc2e9f626df4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054319Z-18489d46dccp2df8e3m20gzz8w00000007t000000000fgyt + - 20241107T055815Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rs1w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A25Z&sr=b&sp=r&sig=pWSnfZ%2FRET3MFTkmQnnzBv7tdZSPU7MkU3z%2BnvYgd4g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:25.2475051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A25Z&sr=b&sp=r&sig=IG815U4GFGWsxCNqTmwgTUqzLPZ7ijlAqR3tpoAESEo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:25.2472696Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A25Z&sr=b&sp=r&sig=WyosFKP%2Bcsbf8ce0NJ9HkKjrPWlxlvWLntmtkaVjfA4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:25.2475711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A25Z&sr=b&sp=r&sig=qNiBKEOI2ixjp5deGizytdDA47zsXss3IjbI%2B1c%2BGdg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:25.2476303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A25Z&sr=b&sp=r&sig=LNLRWtFR%2FbehVfKipoRp72T2Y6NTNzkspGkhiCpbQhc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:25.2476857Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A25Z&se=2024-10-16T06%3A43%3A25Z&sr=c&sp=rl&sig=AwShc29FaJQXZTPLLxt32KkUcVNGzaMEBUB7192SFkk%3D","expireDateTime":"2024-10-16T06:43:25.2477401Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=Bb%2FwwMAiyAmVY4jWzs%2FM9QdM9LJYxeee1ruY%2F42Mr8k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.015437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=YLyAog6IHY426r%2Fp2yY7HfzOYwNsJVepyVPwqT6aBXQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:21.0149531Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=Rv3kd6ATsnxKj0YvfX88T6%2Fa6N9LYA%2FkfRmVddo1Yzc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.0156232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=yzBxAuSRsrlZJt%2BzD3vv4cURxGi6IilMLAi1seSoNEs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.0158133Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A21Z&sr=b&sp=r&sig=XxrVFB5q%2BVXxT%2BiDMyZ4h7hr9sOC3z8WK8jZZDMP7es%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:21.0159991Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A54Z&ske=2024-11-07T21%3A54%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A21Z&se=2024-11-07T06%3A58%3A21Z&sr=c&sp=rl&sig=Dm5aDb8ochUZyr6j8J0tPv0XSE%2BLR1InGkA9DN91wBY%3D","expireDateTime":"2024-11-07T06:58:21.016188Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4938' + - '4944' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:25 GMT + - Thu, 07 Nov 2024 05:58:21 GMT mise-correlation-id: - - 0ca54c8f-d338-4653-b854-d9d23941b25c + - 81645a53-275e-466a-87b8-4421f9253cc2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054325Z-166cf497cd4t2mlmt579burh8800000006w000000000cpr6 + - 20241107T055820Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rt19 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A30Z&sr=b&sp=r&sig=lCaeFuw7eLu86LI1EoGlTPIDBRdqhH1g81PK2hW4A4Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:30.6242258Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A30Z&sr=b&sp=r&sig=malRqGAXu0szzL12ENZQiucMLEYy5QoLfnvDhNb9UR0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:30.6229153Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A30Z&sr=b&sp=r&sig=%2F5orG07oOODkXGctow1dMnvA517ynW7zt4Bg8UHqeMw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:30.6245754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A30Z&sr=b&sp=r&sig=iXv7VBln6Z66u%2BNvsgwxYdhUfXh1%2BIMuOITME34MA94%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:30.6249269Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A30Z&sr=b&sp=r&sig=uHgd2Vp0I3rpQWgptWEBYK5sdVJmHC4ny8vamb6EQKY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:30.6252692Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A02Z&ske=2024-10-16T21%3A40%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A30Z&se=2024-10-16T06%3A43%3A30Z&sr=c&sp=rl&sig=2536U%2Fgxx%2B7%2BBxpTdpi%2FyE8gkam%2BGcD6uwI4Razqri8%3D","expireDateTime":"2024-10-16T06:43:30.6256616Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=cgGitFVFQ7AMDlKSCfjEw3Bf4a%2FeJt136HriOsCsqcc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.2705818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=l4oSEL9wevn5p0MjdSlp4jSIBkNmum4gPGW7sIika5w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:26.2702435Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=gG8NpGT9ovEtrUzjupqlbIIf7QeCbutqZ2UgcUnZTJk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.27075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=AKxuvZU4LXv3H2piDeLANNCMpZ%2BOA4yvEpYCM8ko4D0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.2709295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A26Z&sr=b&sp=r&sig=8JfvFNSQOJkmIQiDwhWEPLJD10RQ5KzKYmwrU4FAEIY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:26.2711163Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A26Z&se=2024-11-07T06%3A58%3A26Z&sr=c&sp=rl&sig=SzHb%2B2Q7bIboSEWVD1K3v7ZJeCZQU01x%2BND2TvP6u%2FE%3D","expireDateTime":"2024-11-07T06:58:26.2712691Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2650,17 +2441,17 @@ interactions: connection: - keep-alive content-length: - - '4942' + - '4934' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:30 GMT + - Thu, 07 Nov 2024 05:58:26 GMT mise-correlation-id: - - c07bf459-54b0-41fa-b1dc-2c4ad7e14013 + - 93ff2bf8-3c4f-4522-ad63-61ca11501e11 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054330Z-166cf497cd4q6m55tfpt35bu6000000007wg000000005rub + - 20241107T055826Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rtwn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2678,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A36Z&sr=b&sp=r&sig=xcOdRNIxu3BmyueTuOpo9v8rPdI9FV93d1rBowia9RE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:36.0206043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A36Z&sr=b&sp=r&sig=BpVLjukyrMhLHfWUDW5RAKKSzO%2BbDncnFz2e%2BiN2vis%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:36.0203218Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A36Z&sr=b&sp=r&sig=gt3BMjJARpxSdxznYV1Xbhu4Apd5ecAvEM3twDqnQO4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:36.0206904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A36Z&sr=b&sp=r&sig=TsdY8zl%2BGtZfqKjJUQZEOgz312%2FZtN%2BQKm%2B1bnXo1lk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:36.020782Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A36Z&sr=b&sp=r&sig=fhjSi4GPpZlxIE1EtyyaSrWrV1ZDSwaA30byFp%2BNEyc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:36.0208675Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A36Z&se=2024-10-16T06%3A43%3A36Z&sr=c&sp=rl&sig=9jYIULGCcFiSdVhzvtWHnLRoDvWAaijt1WfeEz1I6KU%3D","expireDateTime":"2024-10-16T06:43:36.0209465Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:50.702Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:45.324Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=WAl55Xs3NFKp157mXI4iGqCe3Jm5s9LrQgkNz7%2BdeHc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5430788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=6wTc8HEtBlbJqQDAtDP%2B%2BlHaBhdah4TLWIJkbXerteA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:31.5427531Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=qGQ3XJiHIvgaJWWgMbE6FOxcg%2FqINW1fHK%2FF5YlfJa0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5431997Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=4q652R16XxID7nFYDxqiaDALpJIpvDtKqY5LC3UULK0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5433223Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A31Z&sr=b&sp=r&sig=9Kk4FlBl7HWp1HjRUCcquSVW02GNgT3vqOj6dnnnA2k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:31.5434409Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A17Z&ske=2024-11-07T21%3A55%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A31Z&se=2024-11-07T06%3A58%3A31Z&sr=c&sp=rl&sig=f51ehoK08ZRzRVObZgv015b%2B6SQAJAct%2BKpsNnZH2T4%3D","expireDateTime":"2024-11-07T06:58:31.5435553Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:55:53.244Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:56:43.204Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2692,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4939' + - '4940' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:36 GMT + - Thu, 07 Nov 2024 05:58:31 GMT mise-correlation-id: - - 7fd874d0-f6ce-4f22-9b40-94b2e556a08d + - 60eafec8-d1ee-4c09-830c-72040f1b8e50 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054335Z-15484bdf457bt9vdd1e9rbvmpg000000029000000000c71g + - 20241107T055831Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rura x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2720,13 +2511,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A41Z&sr=b&sp=r&sig=FGUEnVaLqBo%2FM7xow%2FE5%2FquQYLr6Hy24jV8fU7lr8Zk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:41.4410867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A41Z&sr=b&sp=r&sig=BJ806b%2FkmAhBtICpnZ%2ButCU8EVhH3Obo4ynbNBFlC0U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:41.4405838Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A41Z&sr=b&sp=r&sig=70KlgBL%2BBk0x34eaE13q%2BspjJfrAmuUAQHrxjjtKhzA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:41.4412639Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A41Z&sr=b&sp=r&sig=Ca1tiQjnII1fa3dqshd7fwA%2BAgSPCWNPHtlhE88pnT4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:41.441439Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A41Z&sr=b&sp=r&sig=CA6WgLUf0L0sN3Slkae9Z3eCpp0dy83IpPLuhX7mTxs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:41.4416093Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A43Z&ske=2024-10-16T19%3A40%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A41Z&se=2024-10-16T06%3A43%3A41Z&sr=c&sp=rl&sig=FLEjFA1otGnkZbk2YqPML9WLLkQ%2BaOw9wNROJl9bRKU%3D","expireDateTime":"2024-10-16T06:43:41.4417781Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-10-16T05:40:50.702Z","endDateTime":"2024-10-16T05:43:38.472Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:39.122Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=wk%2FKpZrY7OCxZV3pPMKQz9pfPDndEEj5RIGxaIQ4BSs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8105018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=28TEeYNWz%2BfBBriZcZ58D%2BKaB0JTA0WUvy9z8aua9SM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:36.810295Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=0SiLKD9lhfmwQFbsptzI3xMEflKCh%2Bt2ZXuFnrkiQgE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8105879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=TsJSRZpj0zKG1SINR2yx%2FFU1ltUUGPDZtXaGLJ6CIGQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8106744Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A36Z&sr=b&sp=r&sig=dgXqWTXdV3MBrguuB2hHPKlAh7BADmNuXT4DiHb5C%2FU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:36.8107582Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A53Z&ske=2024-11-08T14%3A55%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A36Z&se=2024-11-07T06%3A58%3A36Z&sr=c&sp=rl&sig=vMMjUrnAwB0ErlhpNUT7cNGElCOhCSPomMihVoLqM9Q%3D","expireDateTime":"2024-11-07T06:58:36.8108454Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-11-07T05:55:53.244Z","endDateTime":"2024-11-07T05:58:35.149Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:35.822Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2735,17 +2526,17 @@ interactions: connection: - keep-alive content-length: - - '5071' + - '5065' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:41 GMT + - Thu, 07 Nov 2024 05:58:36 GMT mise-correlation-id: - - 548dfc8c-9d3b-4daf-96f3-81f89bae4102 + - 40c5a031-f44d-411c-818e-f2704b668ef8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054341Z-15484bdf457jvkjnektp2rx17000000002t000000000d7xd + - 20241107T055836Z-16bf8d9b4c7hxwq4hC1BOM82c400000007eg00000000rvvh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2763,23 +2554,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:41 GMT + - Thu, 07 Nov 2024 05:58:38 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -2795,7 +2586,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6DEFC75E34954C8899B5AA49D4311D44 Ref B: CO6AA3150218009 Ref C: 2024-10-16T05:43:41Z' + - 'Ref A: F2642BF2EECE432FB51345872BF99FA1 Ref B: MAA201060514017 Ref C: 2024-11-07T05:58:37Z' status: code: 200 message: OK @@ -2809,13 +2600,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=app-component-test-case + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=app-component-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"6263cd95-3181-4bc7-b66b-2f3658a40744":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"b1eb817b-b315-4cab-ad88-105443c05cb9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a97b40ee-90b9-48c8-9750-b62fe0ec08b8":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/d90c506b-3232-4c91-9e72-0fca3f71e574?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A42Z&sr=b&sp=r&sig=xJgw%2BVsTDEDgJ%2Fn0VG861QyKWPVLecyb1SqTFgOEwhc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:42.4060882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/0551a3b9-33b3-4229-a8cd-5d36c13f1371?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A42Z&sr=b&sp=r&sig=DT2yHuJ4DnMPup9T9rcwEZne57BJrelFr%2B5husz5l6g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:42.4058483Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/2acf9ba7-70fc-484c-9bb9-e1f69f8b1551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A42Z&sr=b&sp=r&sig=fklpJbdWR%2B4O%2B2gaF17uNhUwe9IViiuLqim7eq%2B86tw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:42.4061626Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/b3822f91-75a9-445e-a2e7-750396e9ac44?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A42Z&sr=b&sp=r&sig=zZ%2BMZzENSkNol1EGbrNYYIPJ43HKP92YPgIqWxjx%2FHA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:42.4062551Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/5612cb48-e9d3-4750-8fbb-b7bf681b47e2/ebafbb7a-f851-4720-aedf-baef9c43b556?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A42Z&sr=b&sp=r&sig=BX30qDxtjWWEFQuYBAhvN1PRbP%2BVFMVB3KOncyMxxnk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:42.406334Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://veb6nutuzabw5yin8dpwlosq.z3.blob.storage.azure.net/b7d1b771-61b8-457e-a164-f531880a6c57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A42Z&se=2024-10-16T06%3A43%3A42Z&sr=c&sp=rl&sig=GgvalaYdmguwit4hZi5YxZIYlKsYTNTjceYEPHi2K8Q%3D","expireDateTime":"2024-10-16T06:43:42.4064123Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-10-16T05:40:50.702Z","endDateTime":"2024-10-16T05:43:38.472Z","executedDateTime":"2024-10-16T05:40:49.519Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-10-16T05:40:50.056Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:39.122Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"daf3595e-ee66-46b2-951b-5795d8c1c4e3":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2e8024c5-89c0-4177-89f8-320f5562b4e8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"50ee077f-1b3c-4d44-a7de-d10f5ed2c270":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/a37dc1d3-b8b7-4e07-ab32-7493b634323c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=CHgPn2VOZR0VOm8uiDEG6xzuaowQG7gLZVDk4MwgntQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7251349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/5a897ac8-2faf-4bc4-aab1-18a7a01f16cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=9s%2BTwGFmkSZAc8s%2FRPHu869HQaGMOzW%2BhliO6DCsoyc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:58:39.7247213Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/bddbd9ea-6b7e-4580-890d-0cff36e56434?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=sS7Uu0Og5gxB5TMuZ%2B31B%2Fhiy5njSAyptH1ZIXFaQV0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7253137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/8919358a-83ad-4619-9307-c3bb3e537ca2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=XFgfTEa%2BCly38O%2B%2BIsscQytJ4GTvUtOmerioIePyM%2BM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7254883Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/7d4056cd-faa6-4654-a022-4266c93f1b79/db8eb494-5b08-4e7c-9c30-10d29e9a5480?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A58%3A39Z&sr=b&sp=r&sig=L4cvUb61y5E6O26U1FlH2e9Cyw4XbbriI6N5NjaDHds%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:58:39.7256547Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://tszdj5wq5l85qpwu6icwx2o5.z23.blob.storage.azure.net/b78036f6-7233-4151-ae7e-25e1be088749?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A55%3A16Z&ske=2024-11-07T12%3A55%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A58%3A39Z&se=2024-11-07T06%3A58%3A39Z&sr=c&sp=rl&sig=jyiU%2F4cBoWZR1UTgztqI6yJCTTTlUuxYy2IiKsYa%2F%2Fg%3D","expireDateTime":"2024-11-07T06:58:39.7258434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"app-component-test-run-case","displayName":"app-component-test-run-case","testId":"app-component-test-case","status":"FAILED","startDateTime":"2024-11-07T05:55:53.244Z","endDateTime":"2024-11-07T05:58:35.149Z","executedDateTime":"2024-11-07T05:55:51.118Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/app-component-test-case/testRunId/app-component-test-run-case","createdDateTime":"2024-11-07T05:55:52.702Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:35.822Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2824,17 +2615,17 @@ interactions: connection: - keep-alive content-length: - - '5083' + - '5090' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:42 GMT + - Thu, 07 Nov 2024 05:58:39 GMT mise-correlation-id: - - 1c899d52-6566-4c15-b7d0-3ed25753ffaa + - abc67bc5-ae80-49b3-a243-da6271ce3c15 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054342Z-15484bdf45782nr6fa3f22900400000002e000000000csyp + - 20241107T055839Z-16998b5679fg7psxhC1MAAy9kc00000002c00000000087eh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2856,12 +2647,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-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":"2024-10-16T05:39:09.6679551Z","key2":"2024-10-16T05:39:09.6679551Z"},"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":"2024-10-16T05:39:09.8085807Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-10-16T05:39:09.8085807Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-10-16T05:39:09.5117043Z","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":"2024-11-07T05:54:26.7363308Z","key2":"2024-11-07T05:54:26.7363308Z"},"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":"2024-11-07T05:54:26.8457061Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:54:26.8457061Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:54:26.5957077Z","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 @@ -2870,7 +2661,7 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:43:52 GMT + - Thu, 07 Nov 2024 05:58:50 GMT expires: - '-1' pragma: @@ -2882,9 +2673,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 7CCBF814BE0E448388B5C9D3116EDFDD Ref B: CO6AA3150219029 Ref C: 2024-10-16T05:43:52Z' + - 'Ref A: F1DF74D4423E482F8F27697E297C150E Ref B: MAA201060516047 Ref C: 2024-11-07T05:58:50Z' status: code: 200 message: OK @@ -2898,23 +2689,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:53 GMT + - Thu, 07 Nov 2024 05:58:51 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -2930,14 +2721,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AC79BA28BDEA4D04992E0D51C7352E93 Ref B: CO6AA3150219033 Ref C: 2024-10-16T05:43:53Z' + - 'Ref A: 27FCEE3B0DFB4CF3B7E912E34501EF07 Ref B: MAA201060514035 Ref C: 2024-11-07T05:58:51Z' status: code: 200 message: OK - request: - body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ydhaz74lrs7hpxhdj/providers/Microsoft.Storage/storageAccounts/clitestloadnb5yfzsue": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ydhaz74lrs7hpxhdj/providers/Microsoft.Storage/storageAccounts/clitestloadnb5yfzsue", - "resourceName": "clitestloadnb5yfzsue", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-lldu4auqyrmqf3ief/providers/Microsoft.Storage/storageAccounts/clitestloadstiahrbxv": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-lldu4auqyrmqf3ief/providers/Microsoft.Storage/storageAccounts/clitestloadstiahrbxv", + "resourceName": "clitestloadstiahrbxv", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -2949,33 +2740,33 @@ interactions: Content-Length: - '520' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-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"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-10-16T05:43:53.655Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:53.655Z","lastModifiedBy":"mbhardwaj@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"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:53.468Z","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 connection: - keep-alive content-length: - - '748' + - '742' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:53 GMT + - Thu, 07 Nov 2024 05:58:53 GMT location: - - https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + - https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview mise-correlation-id: - - fbf262a4-692e-452b-8826-ad68165312b9 + - 6b1daf10-af01-4e17-a2c8-00d99757adf8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054353Z-166cf497cd4z69dq84z53rfxzw00000004xg00000000k3e3 + - 20241107T055852Z-184f6b5dbd8xzp4vhC1MAAwxtg0000000720000000004kfz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2993,23 +2784,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:53 GMT + - Thu, 07 Nov 2024 05:58:54 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -3025,7 +2816,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7BC66F94133849379F3F39924F3C548B Ref B: CO6AA3150219049 Ref C: 2024-10-16T05:43:54Z' + - 'Ref A: 43857E1A70F146FAB556BC182B5112EC Ref B: MAA201060515039 Ref C: 2024-11-07T05:58:54Z' status: code: 200 message: OK @@ -3039,12 +2830,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-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"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-10-16T05:43:53.655Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:53.655Z","lastModifiedBy":"mbhardwaj@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"}},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:53.468Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3053,17 +2844,17 @@ interactions: connection: - keep-alive content-length: - - '748' + - '742' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:54 GMT + - Thu, 07 Nov 2024 05:58:56 GMT mise-correlation-id: - - b7e47156-0dd8-41dc-aa26-7b18f92b6aa4 + - b68bdc83-f94a-4869-8094-6faa2206f040 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054354Z-15484bdf457rtsfnfha0z70xv800000002gg000000006b1a + - 20241107T055856Z-184f6b5dbd8x2vfvhC1MAAb43c000000075000000000b7hf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3081,23 +2872,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:55 GMT + - Thu, 07 Nov 2024 05:58:58 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -3113,12 +2904,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 92C0B22730CD4097A5415900E39A7957 Ref B: CO6AA3150217049 Ref C: 2024-10-16T05:43:55Z' + - 'Ref A: F158DEC243164FC2BAD918AC995D66E8 Ref B: MAA201060515045 Ref C: 2024-11-07T05:58:57Z' status: code: 200 message: OK - request: - body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-ydhaz74lrs7hpxhdj/providers/Microsoft.Storage/storageAccounts/clitestloadnb5yfzsue": + body: '{"testRunId": "app-component-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-lldu4auqyrmqf3ief/providers/Microsoft.Storage/storageAccounts/clitestloadstiahrbxv": null}}' headers: Accept: @@ -3130,14 +2921,14 @@ interactions: Content-Length: - '232' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-10-16T05:43:53.655Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:55.803Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:59.695Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3146,17 +2937,17 @@ interactions: connection: - keep-alive content-length: - - '235' + - '229' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:55 GMT + - Thu, 07 Nov 2024 05:58:59 GMT mise-correlation-id: - - 95fe8c7e-7c29-47d3-bee7-a3b4d994f454 + - 258d66cf-293c-45dc-9e43-407b49932e31 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054355Z-18489d46dcc7qds9rw9wr310dc000000060000000000hcwk + - 20241107T055859Z-16998b5679fg7psxhC1MAAy9kc00000002fg000000003qmd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3174,23 +2965,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3511808Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3511808Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5086ac57-a03d-4609-b95f-b244f25e09fa.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":"2024-11-07T05:53:29.6214893Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:53:29.6214893Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:56 GMT + - Thu, 07 Nov 2024 05:59:00 GMT etag: - - '"c501bb72-0000-0200-0000-670f516f0000"' + - '"130190aa-0000-0200-0000-672c56040000"' expires: - '-1' pragma: @@ -3206,7 +2997,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2D7D209EC9E64119B714126EA9C9AD70 Ref B: CO6AA3150218017 Ref C: 2024-10-16T05:43:56Z' + - 'Ref A: 30FE9E98CA6243BBB1E09761C7B51774 Ref B: MAA201060513033 Ref C: 2024-11-07T05:59:00Z' status: code: 200 message: OK @@ -3220,12 +3011,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5086ac57-a03d-4609-b95f-b244f25e09fa.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://efa9a8db-eefc-4da7-a024-24678bd9b766.eastus.cnt-prod.loadtesting.azure.com/test-runs/app-component-test-run-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-10-16T05:43:53.655Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:55.803Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"components":{},"testRunId":"app-component-test-run-case","createdDateTime":"2024-11-07T05:58:53.468Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:58:59.695Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3234,17 +3025,17 @@ interactions: connection: - keep-alive content-length: - - '235' + - '229' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:56 GMT + - Thu, 07 Nov 2024 05:59:02 GMT mise-correlation-id: - - 42cdb602-1383-4297-aa0b-ff26c7b6b861 + - a99a363a-d866-4a69-a87c-8d733a211ff4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054356Z-18489d46dcc6jcdlqqc3agq27c00000007vg00000000gzg4 + - 20241107T055901Z-184f6b5dbd8sdcb5hC1MAAkzhn0000000740000000009wz8 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 55d85d30a5c..eb5054b9ebb 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-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":"2024-10-16T05:44:35.5902248Z","key2":"2024-10-16T05:44:35.5902248Z"},"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":"2024-10-16T05:44:35.6839763Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-10-16T05:44:35.6839763Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-10-16T05:44:35.4496014Z","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":"2024-11-07T05:49:06.9587726Z","key2":"2024-11-07T05:49:06.9587726Z"},"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":"2024-11-07T05:49:07.0837694Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:49:07.0837694Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:49:06.8181507Z","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: - - Wed, 16 Oct 2024 05:44:55 GMT + - Thu, 07 Nov 2024 05:49:28 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 35EAAC58B91D477F888E862A73F3BDFD Ref B: CO6AA3150217027 Ref C: 2024-10-16T05:44:55Z' + - 'Ref A: ED3A4662D7224DF98F1727F515105E0F Ref B: MAA201060513037 Ref C: 2024-11-07T05:49:28Z' status: code: 200 message: OK @@ -55,23 +55,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:59.784698Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:59.784698Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a79d7493-2cef-431c-a41c-494042c81cbd.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":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '657' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:57 GMT + - Thu, 07 Nov 2024 05:49:29 GMT etag: - - '"c5019e83-0000-0200-0000-670f52b80000"' + - '"13012699-0000-0200-0000-672c54c30000"' expires: - '-1' pragma: @@ -87,7 +87,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 34003923C9584AB883A68D9925CBFFAE Ref B: CO6AA3150218031 Ref C: 2024-10-16T05:44:56Z' + - 'Ref A: 9FF47BD57635483AA0D90FE561FBA3E8 Ref B: MAA201060516039 Ref C: 2024-11-07T05:49:29Z' status: code: 200 message: OK @@ -101,9 +101,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -116,15 +116,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:58 GMT + - Thu, 07 Nov 2024 05:49:31 GMT mise-correlation-id: - - 9681af5a-a4fa-45eb-84ff-1723eb1e372b + - 3a828b14-e7b9-4fe9-9589-1365fdeb550e strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054458Z-17f5d849667dlw8817rng82bvc00000006dg000000003bwa + - 20241107T054930Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9x1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -136,14 +136,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"34ea3df8-1400-49e8-99c5-93e6c12929d8": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "fd06c877-11c9-47c0-b021-65b46688a694": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "5ad522a8-a6a6-4631-9f24-3edc6513c0e1": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"c3e71f91-15a0-43fe-9076-72139307b321": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "0e47e833-d363-4335-b9a0-ec461c665131": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "6bf2182c-ea7f-4cb0-b97a-9fd5837f077b": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -152,36 +153,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34ea3df8-1400-49e8-99c5-93e6c12929d8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fd06c877-11c9-47c0-b021-65b46688a694":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5ad522a8-a6a6-4631-9f24-3edc6513c0e1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:58.85Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:58.85Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c3e71f91-15a0-43fe-9076-72139307b321":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0e47e833-d363-4335-b9a0-ec461c665131":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bf2182c-ea7f-4cb0-b97a-9fd5837f077b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:31.987Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:49:31.987Z","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 connection: - keep-alive content-length: - - '1057' + - '1053' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:58 GMT + - Thu, 07 Nov 2024 05:49:32 GMT location: - - https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview + - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 5c0bdd24-209a-4c18-aeb1-7d251183285c + - 3c5eced3-4d01-44b5-91e0-2980e2b0a1d9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054458Z-17f5d849667kzjrv7fd72zv9x000000005yg000000007s93 + - 20241107T054931Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9xn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -199,9 +200,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -217,13 +218,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:59 GMT + - Thu, 07 Nov 2024 05:49:32 GMT mise-correlation-id: - - 1ec09999-c5a2-45cb-86da-784dab4c2454 + - 0937819a-df54-49ba-9d0a-6c2a29cee2c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054459Z-17f5d849667tvht4m3rc1u623400000008y0000000000yh9 + - 20241107T054932Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9y2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -248,33 +249,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/1e74f121-7f8a-4994-9931-7f103587169c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A00Z&sr=b&sp=r&sig=G40VF9e7386FJmmIQW8oxLsmVmNNb%2BFLiWPXL9RtLMA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:55:00.5246273Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A32Z&ske=2024-11-07T12%3A49%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A32Z&sr=b&sp=r&sig=tbMjiWr0NV3I8eHrmkunwZIp%2FZmPsR2IKtpCdM6PMwo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:32.9176307Z","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 connection: - keep-alive content-length: - - '572' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:00 GMT + - Thu, 07 Nov 2024 05:49:33 GMT location: - - https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 9707d63c-a05c-443a-ae92-9714d8c27f41 + - 96b32715-a512-43fc-badd-1284e556f257 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054459Z-165bfd566cfwdnp4qpcafa3cc400000005eg00000000bp7n + - 20241107T054932Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9y9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -292,12 +293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/1e74f121-7f8a-4994-9931-7f103587169c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A00Z&sr=b&sp=r&sig=G40VF9e7386FJmmIQW8oxLsmVmNNb%2BFLiWPXL9RtLMA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:55:00.8548835Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A33Z&ske=2024-11-07T12%3A49%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A34Z&sr=b&sp=r&sig=6VGDGcQwaoBGMUzCLz%2FVFGys65yo6sRL0BOofDRYOMU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:34.6949811Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -306,17 +307,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:00 GMT + - Thu, 07 Nov 2024 05:49:34 GMT mise-correlation-id: - - 11a0fa59-2350-4955-81d0-4ba6b445ab62 + - 23c853e3-d96c-4c93-95a7-7ae0f17b47cd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054500Z-165bfd566cfz6tr4stm33d094000000005mg000000005ryz + - 20241107T054933Z-16998b5679fpf5b5hC1MAAqxag000000073000000000b9z0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -345,33 +346,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-16T21%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A01Z&sr=b&sp=r&sig=Xb9tCBxxLvcsJ1vbiuoA%2BPa5XJBPsVLoZCBcsn5%2F4cE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:01.3267084Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A35Z&ske=2024-11-07T21%3A49%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A35Z&sr=b&sp=r&sig=otZvdp%2F0IYcmbHLS0eU5H4%2BR1U6xO6SN4SmfORWIEAg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:35.2983022Z","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 connection: - keep-alive content-length: - - '571' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:01 GMT + - Thu, 07 Nov 2024 05:49:35 GMT location: - - https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - a63ec651-288c-4198-855f-5b86c16e1980 + - f8dfa34c-f1b2-418c-b48d-fb76d5958cdd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054500Z-17f5d849667t9hx53vqernxx58000000087g000000006kcv + - 20241107T054934Z-16998b5679fpf5b5hC1MAAqxag000000073000000000ba1d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -389,12 +390,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-16T12%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A01Z&sr=b&sp=r&sig=VvRcTNkZAhmGp8ZaFzcKfXA%2BOxSSxdwS7vBEtLVzzqg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:01.701039Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A33Z&ske=2024-11-07T12%3A49%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A35Z&sr=b&sp=r&sig=vDEMWK7S1yjtEJ5%2FyjBhHmcJf6GgVFZA4FWQmuVqC5k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:35.6624472Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -403,17 +404,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:01 GMT + - Thu, 07 Nov 2024 05:49:35 GMT mise-correlation-id: - - c7fdf061-6479-4f89-a9e6-30177d0e669d + - c92cc05f-d203-4738-baa0-c39cd76e315f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054501Z-17f5d8496675bvlhwnegd9cxen00000007q00000000092a8 + - 20241107T054935Z-16998b5679fpf5b5hC1MAAqxag000000073000000000ba28 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -431,12 +432,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A06Z&sr=b&sp=r&sig=TasmY9Eve5VwYKTPKISuTXBHv8XoD6TffTIS9FS%2BSOI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:06.9786825Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A35Z&ske=2024-11-07T21%3A49%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A40Z&sr=b&sp=r&sig=T%2F87s%2BwhCsL7RAMOlwZ7WTyqWXfceziYIgHeNA4J2eA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:40.9385289Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -445,17 +446,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:07 GMT + - Thu, 07 Nov 2024 05:49:41 GMT mise-correlation-id: - - 5ec4c721-fc99-424a-8ad1-8b96dc3d5b8c + - 4660fff0-1de9-406d-abf0-19bf5a343c37 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054506Z-17f5d849667vm2s91vagzspe4s000000057g000000005nv8 + - 20241107T054940Z-16998b5679fpf5b5hC1MAAqxag000000073000000000ba9e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -473,12 +474,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-16T21%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A12Z&sr=b&sp=r&sig=A0%2BSxwMdMiYQUd4JA4F19ma5PdHE3%2FZFu8DszWouHNA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:12.2678438Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=domOgVEw%2FWKzGzyjrlHW4u31i37cu5z71JQyRslZPr8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:46.2525052Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -487,17 +488,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:12 GMT + - Thu, 07 Nov 2024 05:49:46 GMT mise-correlation-id: - - 26198f8b-e7fa-498a-9485-83867c8b87b6 + - d7a48e2d-bac9-41b0-b01e-3ea3fdd11034 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054512Z-165bfd566cfvnfldckvfavskxn00000007c0000000008k8z + - 20241107T054946Z-16998b5679fpf5b5hC1MAAqxag000000073000000000baek x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -515,12 +516,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A17Z&ske=2024-10-16T12%3A45%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A17Z&sr=b&sp=r&sig=HbrzpnApGYQxBD41pJIHEUk3lJjtMLKOWOFAW0tgTYk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:17.5958939Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A32Z&ske=2024-11-07T12%3A49%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A51Z&sr=b&sp=r&sig=7aBN%2FuAgVb73KBHOgn6%2Bv1yiK%2B0YcVv2Mxhkk1GeCys%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:51.5313199Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -529,17 +530,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:17 GMT + - Thu, 07 Nov 2024 05:49:51 GMT mise-correlation-id: - - f85614f0-e15f-4076-bb50-c415a057bfc2 + - b65881c5-b599-4e30-acf7-4ccc81e4072d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054517Z-17f5d8496672vwgf4k1huv853400000006vg00000000ap9u + - 20241107T054951Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bakf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -557,12 +558,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-16T12%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A22Z&sr=b&sp=r&sig=4Rz1wObAGvE8Xz8I%2Few5%2BY1yg8dJIcfcIyyNQZCmHBQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:22.885464Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A56Z&sr=b&sp=r&sig=wd7swcuJGk155nfKe9%2FOln3SspRkW5oOysAVdgM8sxU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:56.8209365Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -575,13 +576,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:22 GMT + - Thu, 07 Nov 2024 05:49:56 GMT mise-correlation-id: - - b95d4fb6-13ca-4cb5-9b2a-ff5cf305aea5 + - b035bc0e-7639-48a1-850f-5bace2f9d38c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054522Z-17f5d849667v4qhr7z7qcf8ddw000000070000000000fsv3 + - 20241107T054956Z-16998b5679fpf5b5hC1MAAqxag000000073000000000baqm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -599,12 +600,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A28Z&sr=b&sp=r&sig=dAwkT34NLvnYuJezSqe3t1dKmDLhDnESVTAZePPtuUU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:28.2106111Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A35Z&ske=2024-11-07T21%3A49%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=230ZsVexqz9rgfUk2o1WTevvwYB4NzX%2F461GKVBiiJk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:02.1189468Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -613,17 +614,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:28 GMT + - Thu, 07 Nov 2024 05:50:02 GMT mise-correlation-id: - - d9be957b-b827-456d-bbde-1028e75b295f + - 06295527-e19a-4738-b011-444521e9c0b3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054528Z-17f5d849667dlw8817rng82bvc000000068g00000000c8dq + - 20241107T055001Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bav8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -733,33 +734,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A29Z&ske=2024-10-16T21%3A45%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A29Z&sr=b&sp=r&sig=1q45bHzFDipLxf663IQPr2ZIAhg1hYXtPvU9rfgCaSU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:29.2883438Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A02Z&ske=2024-11-07T21%3A50%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=H4MaPyM2iuPYaV8pgkCIe6uzj9jgbzDFDplS7lIVvF0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:02.6667005Z","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 connection: - keep-alive content-length: - - '555' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:29 GMT + - Thu, 07 Nov 2024 05:50:02 GMT location: - - https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - f106ffae-6f70-49e9-a7d9-40c2605acce9 + - 9a19236e-9399-41ac-baa8-9ca2b5150d5d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054528Z-17f5d849667xf5mq613gvk8etc00000009gg00000000c7zs + - 20241107T055002Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bavy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -777,12 +778,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A17Z&ske=2024-10-16T12%3A45%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A29Z&sr=b&sp=r&sig=ROlxVKtaD9QL2Yuj7k%2FaHAKTrtY37tgZe1yaU0N5t1w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:29.6469897Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A58Z&ske=2024-11-07T12%3A49%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=6vYp9mGAgon48IfyYAxZz4LB9PP8bERU27S%2BnFqOsCE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:02.958006Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -795,13 +796,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:29 GMT + - Thu, 07 Nov 2024 05:50:03 GMT mise-correlation-id: - - f3a75ceb-5a5a-4178-a8de-d13676fac35b + - deca9fd1-d1dd-47b6-805d-227617bd0416 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054529Z-17f5d849667b8zgpx3v75uxdz0000000093000000000ap1x + - 20241107T055002Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bawh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -819,12 +820,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-16T21%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A34Z&sr=b&sp=r&sig=WPVFczNKYAFhpxo25kMnrd0YqjKK0h8Q7idafADiIwo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:34.9802329Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A02Z&ske=2024-11-07T21%3A50%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A08Z&sr=b&sp=r&sig=27YSyxC8oASzIrB3m0K0F8RJLzuHNHQBB2LbCluPRWo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:08.2360688Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -833,17 +834,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:34 GMT + - Thu, 07 Nov 2024 05:50:08 GMT mise-correlation-id: - - a3e029a8-ca66-4489-9a65-35ef27373cb5 + - 4f0565b1-49aa-4ac6-a78b-e7fa5eb3ab98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054534Z-17f5d849667qg6t9uvfp3m2p2w00000005rg00000000437a + - 20241107T055008Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bb14 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -861,12 +862,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A40Z&sr=b&sp=r&sig=frR1ICVOl79VhzSAWVtg%2FFNVaYfIrH30mf6wVpdkOac%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:40.2585372Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A02Z&ske=2024-11-07T21%3A50%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A13Z&sr=b&sp=r&sig=3ZdRei3XUjvOJ6Eau%2FRisR0ZzJeYQ4Mn3E%2FkqsWcmE8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:13.5133454Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -875,17 +876,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:40 GMT + - Thu, 07 Nov 2024 05:50:13 GMT mise-correlation-id: - - 4ad8aadc-3b94-4efc-bda8-85ade529bb2b + - 51d3d5e1-23cd-4d5d-b070-30b4396983dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054540Z-17f5d8496674m6s83v2k1qvy2n00000009k0000000006r37 + - 20241107T055013Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bb6x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -903,12 +904,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A45Z&ske=2024-10-16T12%3A45%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A45Z&sr=b&sp=r&sig=LPTRzthQ8cwixCkJS1kI53UyRGhFNQsbNwm2wZCgg%2B4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:45.6694903Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A58Z&ske=2024-11-07T12%3A49%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A18Z&sr=b&sp=r&sig=uhccHpSqUEtiYLiKY7mRPcD8wiYuRTrtxsJOG7cc614%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:18.7925798Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -917,17 +918,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:45 GMT + - Thu, 07 Nov 2024 05:50:18 GMT mise-correlation-id: - - 09388c71-43eb-432a-ac86-bfd11ba2140e + - 99b33ded-4454-4c37-a2d3-b9f22275340e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054545Z-165bfd566cftt5pk5sesfc5t6w00000005w000000000chkc + - 20241107T055018Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbc4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -945,12 +946,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-16T21%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A50Z&sr=b&sp=r&sig=CLHRsJSyNn5jvtOODBFXZFC0bBpi2NmDNbPJJGZlC%2BY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:50.972786Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A24Z&sr=b&sp=r&sig=NnXrq8q%2BZhluThccDe2UsL24y%2BR7vc2GXcpgTw%2BQia8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:24.109113Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -959,17 +960,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:50 GMT + - Thu, 07 Nov 2024 05:50:24 GMT mise-correlation-id: - - 9298fca4-94a3-4784-ae62-85c5aad66edf + - 3c5eb6da-aad0-4b27-87cd-3b978cf56b61 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054550Z-165bfd566cf4k2zhgy89gpw6040000000900000000008ptn + - 20241107T055023Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbgc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -987,12 +988,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A45Z&ske=2024-10-16T12%3A45%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A56Z&sr=b&sp=r&sig=pyszaM8Ll5BNYnAxxWiMox78BJmPBDvaMLCfunF8EdY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:56.3413888Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A29Z&sr=b&sp=r&sig=Udx%2FxIuYrWSsjfirThUnE23GzEsS%2BG1Iuq9sMExg%2FkI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:29.416803Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1001,17 +1002,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:56 GMT + - Thu, 07 Nov 2024 05:50:29 GMT mise-correlation-id: - - af03110f-6d55-4abb-aed0-cf6267705292 + - 660d0366-adb2-42dd-b625-636c9234a766 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054556Z-165bfd566cfh2hdm2qr2zhn4yg000000012g000000004a5b + - 20241107T055029Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbnm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1029,12 +1030,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A29Z&ske=2024-10-16T21%3A45%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A56%3A01Z&sr=b&sp=r&sig=7KxvOLrNVoSczZOW0o7Va7jFiZLY69UR9kYysZuwNr4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:56:01.677587Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A34Z&sr=b&sp=r&sig=i9YB19hD%2BLuA11TCKsO4N7%2BiYh2XiDHUz1CwqpFIdu0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:34.6876251Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1043,17 +1044,17 @@ interactions: connection: - keep-alive content-length: - - '552' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:01 GMT + - Thu, 07 Nov 2024 05:50:34 GMT mise-correlation-id: - - cca147f6-84af-49df-a584-8609bee1cdd6 + - a8f1768f-d5e7-4aa8-918d-436efe09054c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054601Z-165bfd566cfch4x7fkdr4vg1mn000000083000000000h81g + - 20241107T055034Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbsm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1071,13 +1072,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34ea3df8-1400-49e8-99c5-93e6c12929d8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fd06c877-11c9-47c0-b021-65b46688a694":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5ad522a8-a6a6-4631-9f24-3edc6513c0e1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=3XBNOvv%2FDjphOAG0tZfKXSKSSacHHGiCz0o3Cf0gz80%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:01.9426041Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/1e74f121-7f8a-4994-9931-7f103587169c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=bdnS3fjJMgTPluSZxbsQpvHIy23WwuOUMrJkZ8pYaIQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.9428196Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=DeDPQ3FvYILDM27F089isKJ3TjE42Y9IXYzcGZJrghs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.9429181Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:58.85Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:00.548Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"c3e71f91-15a0-43fe-9076-72139307b321":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0e47e833-d363-4335-b9a0-ec461c665131":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bf2182c-ea7f-4cb0-b97a-9fd5837f077b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A34Z&sr=b&sp=r&sig=noqeXtmWzDtHX%2B4Yuu%2BOUeRcEn17R3jegjbM1M9eMlQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:34.9768961Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A34Z&sr=b&sp=r&sig=lGUTFOTzSe5h5Sm4V7o7HRAzYQ0Q2hx0RHtTifldDd4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:34.9773771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A34Z&sr=b&sp=r&sig=xHcBs4J6%2FjJhTzJhxJ4hgHNhLOL96USxpXDLikHIEJY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:34.9774837Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:31.987Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:34.011Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1086,17 +1087,17 @@ interactions: connection: - keep-alive content-length: - - '2771' + - '2773' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:01 GMT + - Thu, 07 Nov 2024 05:50:35 GMT mise-correlation-id: - - af11a9ed-2141-4699-b91b-bad71e1ec764 + - 676c20fe-e8b9-4d0d-89d7-c5e045ecaead strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054601Z-165bfd566cfd2dxssq2e8pp1zc000000097g000000001s94 + - 20241107T055034Z-16998b5679fpf5b5hC1MAAqxag000000073000000000bbsz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1114,23 +1115,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:59.784698Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:59.784698Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a79d7493-2cef-431c-a41c-494042c81cbd.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":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '657' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:01 GMT + - Thu, 07 Nov 2024 05:50:36 GMT etag: - - '"c5019e83-0000-0200-0000-670f52b80000"' + - '"13012699-0000-0200-0000-672c54c30000"' expires: - '-1' pragma: @@ -1146,7 +1147,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2BBEB214CB1F4811B353E6E56E665611 Ref B: CO6AA3150218009 Ref C: 2024-10-16T05:46:02Z' + - 'Ref A: F6D734BDC6B34D2AAA98884A9EEEA072 Ref B: MAA201060514019 Ref C: 2024-11-07T05:50:35Z' status: code: 200 message: OK @@ -1160,13 +1161,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"34ea3df8-1400-49e8-99c5-93e6c12929d8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"fd06c877-11c9-47c0-b021-65b46688a694":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5ad522a8-a6a6-4631-9f24-3edc6513c0e1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/83989a24-3e94-458e-bc01-708ae56681dd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A02Z&sr=b&sp=r&sig=YfLDehpPXo6aQ3DxLjGkqpn94gjrmGUwVxatBF4evTE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:02.7403617Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/1e74f121-7f8a-4994-9931-7f103587169c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A02Z&sr=b&sp=r&sig=5t4eoP57RolMRhBHIthZiw4Sa6bndQaCNxrm00rh7ag%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:02.7407804Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wv4ekhj5ocl6gr550rj9pufg.z7.blob.storage.azure.net/1654bb02-f1ad-40a3-bbac-44c2e5c0d305/3fd02c69-712d-477a-af29-ce2b72fef1f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A59Z&ske=2024-10-16T12%3A44%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A02Z&sr=b&sp=r&sig=lWaFcBMdPmMiw4Tz1woY%2BcCsPOUiskwpb8%2BPra7Grq4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:02.7409878Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:58.85Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:00.548Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"c3e71f91-15a0-43fe-9076-72139307b321":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0e47e833-d363-4335-b9a0-ec461c665131":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bf2182c-ea7f-4cb0-b97a-9fd5837f077b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/2bc17368-af07-4cf8-ac96-b8e332322795?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A37Z&sr=b&sp=r&sig=sffvNqJV4c5sFv1umXReDMw%2FMs801Fm40A2Lhhs%2FyJY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:37.503996Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/0b88b7be-ace2-4b22-97ec-e48e693eebf4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A37Z&sr=b&sp=r&sig=gBulViBkLRQ0V%2BA%2BYISub0xlbeJoTlIfv8z7QCByVbk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:37.5042368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y7dcbrv3kboiwozquzzsncyd.z39.blob.storage.azure.net/3f7cc1d6-b311-4679-9560-d130990af131/a7d33c1a-5891-4b16-9d2d-cccb198dc3f5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A24Z&ske=2024-11-07T12%3A50%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A37Z&sr=b&sp=r&sig=LD9fxBXCDmKwiEiixhfwdML1PVWnE6LYWQUY3U5Jv1s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:37.5043024Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"app-component-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:31.987Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:34.011Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1175,17 +1176,17 @@ interactions: connection: - keep-alive content-length: - - '2785' + - '2786' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:02 GMT + - Thu, 07 Nov 2024 05:50:37 GMT mise-correlation-id: - - aca114e5-eabd-4661-97eb-890fafff60f3 + - 7e571fa8-8955-49ae-aa04-4cbab82026f4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054602Z-165bfd566cf8d7vsev8ncb640000000005yg000000007w7f + - 20241107T055036Z-184f6b5dbd8phhqphC1MAAs410000000077g000000000u3b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1203,23 +1204,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:59.784698Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:59.784698Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a79d7493-2cef-431c-a41c-494042c81cbd.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":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '657' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:03 GMT + - Thu, 07 Nov 2024 05:50:38 GMT etag: - - '"c5019e83-0000-0200-0000-670f52b80000"' + - '"13012699-0000-0200-0000-672c54c30000"' expires: - '-1' pragma: @@ -1235,14 +1236,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1BCD14910821467488D418D1346B0E90 Ref B: CO6AA3150217025 Ref C: 2024-10-16T05:46:03Z' + - 'Ref A: 0374D6F303B84EF7B4D73CE7DBF9F847 Ref B: MAA201060515035 Ref C: 2024-11-07T05:50:38Z' status: code: 200 message: OK - request: - body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-w2wgevffrmcfir4mq/providers/Microsoft.Storage/storageAccounts/clitestloadvl3v4fqly": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-w2wgevffrmcfir4mq/providers/Microsoft.Storage/storageAccounts/clitestloadvl3v4fqly", - "resourceName": "clitestloadvl3v4fqly", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-akds3az7bbtdhm5gk/providers/Microsoft.Storage/storageAccounts/clitestloadzkois5k4g": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-akds3az7bbtdhm5gk/providers/Microsoft.Storage/storageAccounts/clitestloadzkois5k4g", + "resourceName": "clitestloadzkois5k4g", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -1254,33 +1255,33 @@ interactions: Content-Length: - '513' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-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":"2024-10-16T05:46:03.781Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:03.781Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:40.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 connection: - keep-alive content-length: - - '741' + - '735' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:03 GMT + - Thu, 07 Nov 2024 05:50:40 GMT location: - - https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-03-01-preview + - https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-03-01-preview mise-correlation-id: - - 493e7b93-c4f4-4a04-b1e6-1ff7e15aaecb + - 8d18292c-5fc2-49ef-89e7-9f4a46d9de75 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054603Z-165bfd566cf8d7vsev8ncb640000000005z0000000007u8h + - 20241107T055039Z-16998b5679fcjr6chC1MAAz5ks00000003k0000000008mtp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1298,23 +1299,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:59.784698Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:59.784698Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a79d7493-2cef-431c-a41c-494042c81cbd.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":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '657' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:03 GMT + - Thu, 07 Nov 2024 05:50:41 GMT etag: - - '"c5019e83-0000-0200-0000-670f52b80000"' + - '"13012699-0000-0200-0000-672c54c30000"' expires: - '-1' pragma: @@ -1330,7 +1331,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D44AAF65E95147E09D3CAE08C36E9F3B Ref B: CO6AA3150219025 Ref C: 2024-10-16T05:46:04Z' + - 'Ref A: DB35F8B05A1441919A363B8C2F582B64 Ref B: MAA201060514045 Ref C: 2024-11-07T05:50:41Z' status: code: 200 message: OK @@ -1344,12 +1345,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-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":"2024-10-16T05:46:03.781Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:03.781Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:40.304Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1358,17 +1359,17 @@ interactions: connection: - keep-alive content-length: - - '741' + - '735' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:04 GMT + - Thu, 07 Nov 2024 05:50:43 GMT mise-correlation-id: - - f63aff95-a268-40f5-a6a0-4c9151c71319 + - c65f54dd-fa89-4a23-af9f-89ebbfb47648 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054604Z-17f5d8496674m6s83v2k1qvy2n00000009m0000000003p2t + - 20241107T055042Z-184f6b5dbd8k92hshC1MAAh0wn000000071g000000006dp0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1386,23 +1387,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:59.784698Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:59.784698Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a79d7493-2cef-431c-a41c-494042c81cbd.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":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '657' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:04 GMT + - Thu, 07 Nov 2024 05:50:44 GMT etag: - - '"c5019e83-0000-0200-0000-670f52b80000"' + - '"13012699-0000-0200-0000-672c54c30000"' expires: - '-1' pragma: @@ -1418,12 +1419,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 69BBC02A5B0E4FC987DC8A3874B8284D Ref B: CO6AA3150217049 Ref C: 2024-10-16T05:46:05Z' + - 'Ref A: 9EAC489CABE1447AAAEEFC10D6805CEC Ref B: MAA201060515023 Ref C: 2024-11-07T05:50:43Z' status: code: 200 message: OK - request: - body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-w2wgevffrmcfir4mq/providers/Microsoft.Storage/storageAccounts/clitestloadvl3v4fqly": + body: '{"testId": "app-component-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-akds3az7bbtdhm5gk/providers/Microsoft.Storage/storageAccounts/clitestloadzkois5k4g": null}}' headers: Accept: @@ -1435,14 +1436,14 @@ interactions: Content-Length: - '225' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-10-16T05:46:03.781Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:05.695Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:45.956Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1451,17 +1452,17 @@ interactions: connection: - keep-alive content-length: - - '228' + - '222' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:05 GMT + - Thu, 07 Nov 2024 05:50:46 GMT mise-correlation-id: - - bf5d726f-8351-4758-a4e3-c2fe323c2aa1 + - 3ae15625-8d30-451e-96d7-879f64263863 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054605Z-17f5d849667lpnszgtva63hy30000000096g00000000e6th + - 20241107T055045Z-16998b5679fvd5pwhC1MAA3s8n00000007100000000085fg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1479,23 +1480,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:59.784698Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:59.784698Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a79d7493-2cef-431c-a41c-494042c81cbd.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":"2024-11-07T05:48:28.2191577Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:28.2191577Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '657' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:05 GMT + - Thu, 07 Nov 2024 05:50:46 GMT etag: - - '"c5019e83-0000-0200-0000-670f52b80000"' + - '"13012699-0000-0200-0000-672c54c30000"' expires: - '-1' pragma: @@ -1511,7 +1512,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9B806A07653E4B8C9BC93F52EC16DB0A Ref B: CO6AA3150219031 Ref C: 2024-10-16T05:46:06Z' + - 'Ref A: 8CC3682A9E354833878BC989ABA35138 Ref B: MAA201060514023 Ref C: 2024-11-07T05:50:46Z' status: code: 200 message: OK @@ -1525,12 +1526,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a79d7493-2cef-431c-a41c-494042c81cbd.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview + uri: https://a2e972e4-feca-48b9-866c-7952f528f648.eastus.cnt-prod.loadtesting.azure.com/tests/app-component-test-case/app-components?api-version=2024-05-01-preview response: body: - string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-10-16T05:46:03.781Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:05.695Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"components":{},"testId":"app-component-test-case","createdDateTime":"2024-11-07T05:50:40.304Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:45.956Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1539,17 +1540,17 @@ interactions: connection: - keep-alive content-length: - - '228' + - '222' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:06 GMT + - Thu, 07 Nov 2024 05:50:48 GMT mise-correlation-id: - - 5fe1da2b-4937-4d8f-b61e-179a7d30547a + - 127497fd-8e53-4066-818d-51a70e4cdd9b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054606Z-165bfd566cfdmznfsy8bqd99tg00000009s0000000001cu4 + - 20241107T055048Z-16998b5679fcjr6chC1MAAz5ks00000003p0000000003b5y 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 a542b07122a..029f5126841 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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/\"b609a051-bdf9-4333-bbf5-320fb7ea3f02\"","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/\"a367cab2-e2af-4f00-8ac8-d9eecb168457\"","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: - - Wed, 16 Oct 2024 05:39:44 GMT + - Thu, 07 Nov 2024 05:49:36 GMT expires: - '-1' pragma: @@ -39,14 +39,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4eb8f6a9-8938-4607-9a24-b6e653f4ab86 + - 8ed0b71d-8883-4980-bc48-f0483dafb0ef x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 955BF898AF6C4858B2F4F9C54482F656 Ref B: CO6AA3150220025 Ref C: 2024-10-16T05:39:44Z' + - 'Ref A: 87F77408D60C4E5CA831C592ED95FA74 Ref B: MAA201060513031 Ref C: 2024-11-07T05:49:36Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -57,23 +57,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.1989042Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.1989042Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8cf7423f-38c1-453b-afb5-38c62d8654a3.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":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:44 GMT + - Thu, 07 Nov 2024 05:49:38 GMT etag: - - '"c5010273-0000-0200-0000-670f51740000"' + - '"13013899-0000-0200-0000-672c54c40000"' expires: - '-1' pragma: @@ -89,7 +89,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3E37A406B7774CF79AA876273A42F839 Ref B: CO6AA3150217033 Ref C: 2024-10-16T05:39:45Z' + - 'Ref A: FCBD4315E47343149FEA04757305FD46 Ref B: MAA201060516053 Ref C: 2024-11-07T05:49:38Z' status: code: 200 message: OK @@ -103,9 +103,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -118,15 +118,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:39:45 GMT + - Thu, 07 Nov 2024 05:49:41 GMT mise-correlation-id: - - 64ea328b-cc2c-41a9-ac0e-32b4b16f96c6 + - ea927e6d-2c2d-4a19-ad80-f7121806fb35 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T053945Z-18489d46dcc2nx5gu4q8t6hd2g00000007rg00000000fp27 + - 20241107T054940Z-16998b5679fx5676hC1MAAqzc4000000077g000000002ucc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -140,16 +140,16 @@ interactions: body: '{"displayName": "Sample_test_display_name", "description": "Sample_test_description", "keyvaultReferenceIdentityType": "UserAssigned", "keyvaultReferenceIdentityId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sample-rg/providers/microsoft.managedidentity/userassignedidentities/sample-mi", - "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-4ry6whkphzeckb2st/providers/Microsoft.Network/virtualNetworks/clitest-load-i7abftm622nxg76hh/subnets/default", + "publicIPDisabled": true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7gscam2ojmmpmkggs/providers/Microsoft.Network/virtualNetworks/clitest-load-ote5sb2yhugb4s5q6/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, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"e36b954d-414d-49eb-8b75-8bc965b69b04": + true}, "passFailCriteria": {"passFailMetrics": {"e999bc39-50ee-4569-928b-578d99a1ada8": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "1f822989-3f1e-4451-9cfa-a97ef873c2ab": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "1b34afe1-21c8-4e91-ac0c-79cb68f8ab08": + "78"}, "2edb8822-dfe0-4782-9643-8d0b29ac6b3d": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "e57f3d76-5614-43d2-9243-a9f67513b0fb": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' headers: @@ -160,35 +160,35 @@ interactions: Connection: - keep-alive Content-Length: - - '1574' + - '1600' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e36b954d-414d-49eb-8b75-8bc965b69b04":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f822989-3f1e-4451-9cfa-a97ef873c2ab":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1b34afe1-21c8-4e91-ac0c-79cb68f8ab08":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"secrets":{"secret_name1":{"value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757","type":"AKV_SECRET_URI"},"secret_name2":{"value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757","type":"AKV_SECRET_URI"}},"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":false,"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":"2024-10-16T05:39:47.442Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:39:47.442Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"e999bc39-50ee-4569-928b-578d99a1ada8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2edb8822-dfe0-4782-9643-8d0b29ac6b3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e57f3d76-5614-43d2-9243-a9f67513b0fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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,"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":"2024-11-07T05:49:43.037Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:49:43.037Z","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 connection: - keep-alive content-length: - - '1829' + - '1822' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:47 GMT + - Thu, 07 Nov 2024 05:49:43 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 16e9498b-cb06-4878-ae5e-19e70deb20f8 + - c60cf611-f721-494b-a26d-2a0e8b03ba9a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053945Z-18489d46dccj85r8e2f8g29m28000000081g000000007gkw + - 20241107T054941Z-16998b5679fx5676hC1MAAqzc4000000077g000000002udm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -206,9 +206,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -224,13 +224,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:47 GMT + - Thu, 07 Nov 2024 05:49:43 GMT mise-correlation-id: - - 3931b1b0-98f6-4766-86d3-ef97169def27 + - 635e256d-d7d6-436f-bd39-c9a39a538b46 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053947Z-18489d46dcc2nx5gu4q8t6hd2g00000007q000000000m0me + - 20241107T054943Z-16998b5679fx5676hC1MAAqzc4000000077g000000002ufx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -255,33 +255,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/369e758d-6a42-425b-af98-bfdae3ac4723?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A48Z&sr=b&sp=r&sig=UyQcNc5kvG8WBDUxQfk9pzjw8Tlx1vAXv3MFBTfxkZw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:48.2864823Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=un39R8oMEo3FXZXXzdnsf4%2BeEJC7DxL%2BgnvaSF4qtKs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:46.1701542Z","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 connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:48 GMT + - Thu, 07 Nov 2024 05:49:46 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 0d29d944-13ed-4177-8ff4-3a244c245565 + - 9a7e4125-8ad0-46bf-add0-4395e039d61d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053947Z-18489d46dccnnh2b19wcyx7sm000000008000000000069w6 + - 20241107T054943Z-16998b5679fx5676hC1MAAqzc4000000077g000000002uge x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,12 +299,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/369e758d-6a42-425b-af98-bfdae3ac4723?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A48Z&sr=b&sp=r&sig=UyQcNc5kvG8WBDUxQfk9pzjw8Tlx1vAXv3MFBTfxkZw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:48.6302757Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=un39R8oMEo3FXZXXzdnsf4%2BeEJC7DxL%2BgnvaSF4qtKs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T05:59:46.5101234Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -313,17 +313,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:48 GMT + - Thu, 07 Nov 2024 05:49:46 GMT mise-correlation-id: - - 74d08015-c733-47b1-8517-971c32ab300d + - d3bd5afa-a1e9-43a9-8a62-1bdca13088f0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053948Z-18489d46dccfp7rz6a82yt7pbw00000007x0000000008w3b + - 20241107T054946Z-16998b5679fx5676hC1MAAqzc4000000077g000000002unx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -352,14 +352,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A50Z&sr=b&sp=r&sig=HZdPFOD19B4zXeTNGr3MbuhN1xxKWRjaBfVngs3Z75A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:50.1507799Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A47Z&sr=b&sp=r&sig=1XImV3DhJlEJiXkvJdfhfliZgjKGIsiHcXDxqGoAdVw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:47.2055097Z","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 @@ -370,15 +370,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:50 GMT + - Thu, 07 Nov 2024 05:49:47 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 40b584ef-94c1-468e-901b-76580ae9c965 + - 414360dc-2064-4b76-bdc6-2fe5495aa235 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053948Z-166cf497cd4mqn5ksypuy7gvan00000007zg00000000ddst + - 20241107T054946Z-16998b5679fx5676hC1MAAqzc4000000077g000000002upt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -396,12 +396,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T12%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A50Z&sr=b&sp=r&sig=Jl9xXGsSg958diqko34UZ%2FlRV4sruOB1BTY9zSrX1pc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:50.5874992Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A47Z&sr=b&sp=r&sig=G2xvF4TTgREXxi1BWx1HlMKtDS9jc24BrF2eMDXwD5Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:47.5169725Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -410,17 +410,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:50 GMT + - Thu, 07 Nov 2024 05:49:47 GMT mise-correlation-id: - - 3737cabb-a35c-48a1-9c1f-df144f58e18e + - 00dbe29a-933f-4796-9eb9-287fe7ffe9b7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053950Z-166cf497cd4qwz4p7wbrzn166c000000028000000000mnvd + - 20241107T054947Z-16998b5679fx5676hC1MAAqzc4000000077g000000002ur4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -438,12 +438,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T12%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A55Z&sr=b&sp=r&sig=Q09FLzT%2FY1Sh7WyMXcFJu8SakIdGCsdkm4GMsBoNpKQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:55.9179364Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A52Z&sr=b&sp=r&sig=sgZyNmHU9QwtET3XkBgdCfv2BkAiGlbz6BHFde6Eh7A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:52.8449751Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -452,17 +452,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:55 GMT + - Thu, 07 Nov 2024 05:49:52 GMT mise-correlation-id: - - 20172b17-d59f-4eed-80ce-e0d32276fdf9 + - 4a6008bc-c8df-468b-8dd0-b3fb92e80db2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053955Z-166cf497cd4v8snbtm724w4g2c00000007z000000000c2rn + - 20241107T054952Z-16998b5679fx5676hC1MAAqzc4000000077g000000002uz9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -480,12 +480,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A01Z&sr=b&sp=r&sig=NhNfMKFvdlrE3JG%2BnrFpDXe6Y2svP5NMiJo7kvVAV4Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:01.2840274Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A58Z&sr=b&sp=r&sig=fLr9EOhMAVj7WmUkQa4TwkHuLK4msDjuaVmI0jDoqjw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T05:59:58.1500175Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -494,17 +494,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:01 GMT + - Thu, 07 Nov 2024 05:49:58 GMT mise-correlation-id: - - 6a6bbf0b-6781-40dc-990f-2959c1db9601 + - d7c5459d-6655-40de-aecd-7985219b76e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054001Z-166cf497cd4mqn5ksypuy7gvan00000007x000000000q68y + - 20241107T054958Z-16998b5679fx5676hC1MAAqzc4000000077g000000002v5n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -522,12 +522,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A06Z&sr=b&sp=r&sig=5kEGNwOSTwrNFgXtXd5NHv0kMtA2vtSnm7kKbWU97jA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:06.6560344Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A03Z&sr=b&sp=r&sig=Jm7SgjE7ouBY2iOi0h1QN4jAM13wlfMxVasZn%2BHycrk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:03.4410313Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -536,17 +536,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:06 GMT + - Thu, 07 Nov 2024 05:50:03 GMT mise-correlation-id: - - aad1894d-916e-4964-95cb-4b31fd38c1f6 + - 9eb809d2-f93c-4216-81d7-c7e3e01be0d1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054006Z-18489d46dccfp7rz6a82yt7pbw00000007u000000000k6d2 + - 20241107T055003Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vbw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -564,12 +564,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A11Z&ske=2024-10-16T12%3A40%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A12Z&sr=b&sp=r&sig=SaHBBuizR24GnXaeHO2bu%2BMdWHZlDbPDRR5Zp%2Bi6QpM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:12.0096458Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A08Z&sr=b&sp=r&sig=ykj8eOP%2F%2B%2BFCCJoyjU2GiVaHU67sSXE5zBaZYbC1lIg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:08.7418998Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -578,17 +578,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:11 GMT + - Thu, 07 Nov 2024 05:50:08 GMT mise-correlation-id: - - 7fbed538-ba71-4f94-aad6-e2a7f99b2b42 + - b3e3480d-b55a-4450-afff-e9aa1a8e668f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054011Z-18489d46dccd6w2hyw4dcpanpw00000007x000000000eqru + - 20241107T055008Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vhs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -606,12 +606,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A17Z&sr=b&sp=r&sig=0hkwrva3ozCyMI%2BdgXDVD9z01DC96GC0YvDAV1Akcrg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:17.479387Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A14Z&sr=b&sp=r&sig=EP5MlFuqDptq%2BoNuumvUx2vtTz0klpHYZ0luztadHN4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:14.0398989Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -620,17 +620,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:17 GMT + - Thu, 07 Nov 2024 05:50:14 GMT mise-correlation-id: - - d8fb5ed7-94d8-477d-8b7d-6660fe105fd9 + - 67ae964a-3a0f-46b2-9532-ba5b0553c65b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054017Z-166cf497cd4xh8zq4d721105qg00000007sg00000000g03x + - 20241107T055013Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vrr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -648,12 +648,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A22Z&sr=b&sp=r&sig=Tz0HPpk8ciIFnco2ai6KfUDXCuSFTxIFrrAhiAW8gho%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:22.8484343Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A14Z&ske=2024-11-07T12%3A50%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A19Z&sr=b&sp=r&sig=aUz9sfuURi5K1yp6PcUxH3D3iWbmfq5b%2BVCI46OFb3o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:00:19.3337064Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -662,17 +662,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Thu, 07 Nov 2024 05:50:19 GMT mise-correlation-id: - - 57d214c5-cce0-4540-945e-ad96c73fc890 + - f39016ad-7379-464b-8525-696d3d365799 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054022Z-18489d46dccgwx6cyqev009zy000000007p000000000neff + - 20241107T055019Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vzb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -782,14 +782,14 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A23Z&sr=b&sp=r&sig=%2BY3riWN17OWOU2qcmUgFxeZW9rAd28ST6p46cH%2BPJdU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:23.9244421Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A20Z&sr=b&sp=r&sig=t4vXjs%2B9OsYk%2BKRrO6bNMQQchu9UFTBOQMb8jTbTJVQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:20.0307222Z","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 @@ -800,15 +800,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:23 GMT + - Thu, 07 Nov 2024 05:50:20 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 08de375e-e74d-4776-9e38-d78ca9ae207a + - 44ab09a9-4cf6-42dd-a1f3-a85be53a8860 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054023Z-18489d46dcck852hghpv4950b000000007tg00000000kvgd + - 20241107T055019Z-16998b5679fx5676hC1MAAqzc4000000077g000000002vzp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -826,12 +826,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A24Z&sr=b&sp=r&sig=k3eF%2BpblNCmEolIpD1Mi3eXLA%2BF%2BFeoPfsPj8xxn5ZY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:24.2965882Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A20Z&sr=b&sp=r&sig=%2BoxLmvI9z%2BCHwlXB%2FDusrIXZyftt40atChyntwawF8w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:20.3336973Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -844,13 +844,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:24 GMT + - Thu, 07 Nov 2024 05:50:20 GMT mise-correlation-id: - - 6309bfbe-f722-4951-8ede-4f7471f6d023 + - 0143aed5-1ffa-460c-ad8b-31ac2cf1c91b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054024Z-15484bdf45782nr6fa3f22900400000002c000000000hbk7 + - 20241107T055020Z-16998b5679fx5676hC1MAAqzc4000000077g000000002w0v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -868,12 +868,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A29Z&sr=b&sp=r&sig=48CtLgpNFm%2BKFwfd08q1BLnioRCVZsoX3pBpst0Vhek%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:29.6528677Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A14Z&ske=2024-11-07T12%3A50%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A25Z&sr=b&sp=r&sig=3ZOUOj2B6sUsPKQZBIqAuamnqtVbYxbgp5sWuO60uxU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:25.6244044Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -882,17 +882,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:29 GMT + - Thu, 07 Nov 2024 05:50:25 GMT mise-correlation-id: - - 833d46b8-cd37-43e7-8de3-272ae8d5f842 + - 9c12f73b-1c59-4b95-ae61-b9eed45b1191 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054029Z-166cf497cd4r6hmp97992txd7w00000007vg00000000kan7 + - 20241107T055025Z-16998b5679fx5676hC1MAAqzc4000000077g000000002w89 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -910,12 +910,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A34Z&sr=b&sp=r&sig=QRwdwieuqTHUmB771TYjBPbM69C9RNz6f4xu1PtgUF8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:34.9804454Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A14Z&ske=2024-11-07T12%3A50%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A30Z&sr=b&sp=r&sig=1Z8iEpHvCUfTg65GdkQVKAtnFz5xBAYTZWcD5CwPxDc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:30.925033Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -924,17 +924,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:34 GMT + - Thu, 07 Nov 2024 05:50:31 GMT mise-correlation-id: - - 9702aa19-74b5-40ec-aed1-edaad9310377 + - 3e240259-a190-47fc-9ed8-95fb9b5b65d1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054034Z-18489d46dccvln7t51fh7vb5kw00000007zg00000000d2e5 + - 20241107T055030Z-16998b5679fx5676hC1MAAqzc4000000077g000000002wes x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -952,12 +952,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A40Z&sr=b&sp=r&sig=hMJX8%2FUR8KgzPoqbRzVjlV9WZ6WNDe0oZo036XLvYEE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:40.3423447Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A36Z&sr=b&sp=r&sig=J1uGqEVLhi1Hr3uPbbnkH2wLFWI1vGHqVwfQLENV6tE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:36.2204868Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -966,17 +966,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:40 GMT + - Thu, 07 Nov 2024 05:50:36 GMT mise-correlation-id: - - 5fc7a993-c763-474f-bf39-7fccf5e9b802 + - c689ca0d-282a-488b-9eab-08f53400db11 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054040Z-166cf497cd4r6hmp97992txd7w00000007x000000000e7ac + - 20241107T055036Z-16998b5679fx5676hC1MAAqzc4000000077g000000002wrh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -994,12 +994,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A45Z&sr=b&sp=r&sig=jZGlBgc9Kp2s9%2BvcEwnDFk0d2I55096PA7KMsDiuhLM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:45.7336699Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A41Z&sr=b&sp=r&sig=Hrp9ztckQGSsQNCyuSLFS48xkxga4wi9N8thzMoZEiU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:41.5557557Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1008,17 +1008,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:45 GMT + - Thu, 07 Nov 2024 05:50:41 GMT mise-correlation-id: - - 43a36ea9-3be3-4b0d-a3d9-6e84a69f1246 + - 666a92de-f26a-4231-8f4a-9e084bccc9cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054045Z-166cf497cd48w6x2zuxa69f51n00000007vg00000000hfwd + - 20241107T055041Z-16998b5679fx5676hC1MAAqzc4000000077g000000002x14 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1036,12 +1036,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A51Z&sr=b&sp=r&sig=tsK%2FVlCqVs1c2G0z59JPVDp5p0cm%2BDSZt7eIJ6ZmBL0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:51.0639433Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A46Z&sr=b&sp=r&sig=Xvee2ZE4%2FiqLfmny%2BjLBWmKvgZ28gabXpSe6KG4llSQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:46.8455817Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1054,13 +1054,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:51 GMT + - Thu, 07 Nov 2024 05:50:46 GMT mise-correlation-id: - - 6d4fa726-9f98-45db-845b-45b38ceb56e0 + - 8d393793-c580-4581-aab9-bd54ab473e70 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054050Z-18489d46dccp2df8e3m20gzz8w00000007tg00000000d4pk + - 20241107T055046Z-16998b5679fx5676hC1MAAqzc4000000077g000000002x9y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1078,12 +1078,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A56Z&sr=b&sp=r&sig=OzhiE%2BaeiTVZfwQKgbG4qTwJHp%2B4bhy3Gf%2Bb3WDVtwU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:56.4202209Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A52Z&sr=b&sp=r&sig=8%2BBbH3MvptMrI8VNdrI1u%2FR81nkxaBKCZxnVEyGJFbA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:52.1423351Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1092,17 +1092,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:56 GMT + - Thu, 07 Nov 2024 05:50:52 GMT mise-correlation-id: - - 09ecce5a-07d9-400a-8b97-2f907a52685e + - 6767a349-cb16-43d7-800e-b7e60de4eceb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054056Z-15484bdf457bt9vdd1e9rbvmpg000000029g00000000atut + - 20241107T055052Z-16998b5679fx5676hC1MAAqzc4000000077g000000002xm6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1120,12 +1120,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e36b954d-414d-49eb-8b75-8bc965b69b04":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f822989-3f1e-4451-9cfa-a97ef873c2ab":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1b34afe1-21c8-4e91-ac0c-79cb68f8ab08":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"secrets":{"secret_name1":{"value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757","type":"AKV_SECRET_URI"},"secret_name2":{"value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757","type":"AKV_SECRET_URI"}},"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://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=K8fxzOsyFyRTuBEsi6YYG5ks9svVDYkeggBeJ2EJhW8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:56.7128207Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/369e758d-6a42-425b-af98-bfdae3ac4723?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=2jefPjlRzgObAQlCENwhTXuGqpPYbICcQAzL0ttunKI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:56.7131602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A56Z&sr=b&sp=r&sig=0i0Mw2t4DDCdbTCUPRRJLGL7EJLZ9tRIPPAkzh2KPGA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:56.7133414Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"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":"2024-10-16T05:39:47.442Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:56.241Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"e999bc39-50ee-4569-928b-578d99a1ada8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2edb8822-dfe0-4782-9643-8d0b29ac6b3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e57f3d76-5614-43d2-9243-a9f67513b0fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A52Z&sr=b&sp=r&sig=MuUfwjv%2FtKqwyipnR4fCS%2BRiNWyVoT9spbgQiEdceaE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:52.4505075Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A52Z&sr=b&sp=r&sig=l0q8b1fY%2FmIBNONY9g3Pb5dMpimQFLqVMNPyhfTW3Rs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:52.4510334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A52Z&sr=b&sp=r&sig=xDmx3vywi8sUYdqpcKeEZNvhSPzqqCsGk5AYx4HVnwQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:52.451192Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"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":"2024-11-07T05:49:43.037Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:51.992Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1134,17 +1134,17 @@ interactions: connection: - keep-alive content-length: - - '3543' + - '3541' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:56 GMT + - Thu, 07 Nov 2024 05:50:52 GMT mise-correlation-id: - - d7e8824a-bfde-4c77-a9cb-d73bb0dc2a94 + - 66eae96c-c114-414d-b705-9fdd22123955 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054056Z-166cf497cd4mqn5ksypuy7gvan0000000830000000003w3q + - 20241107T055052Z-16998b5679fx5676hC1MAAqzc4000000077g000000002xmy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1162,23 +1162,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.1989042Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.1989042Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8cf7423f-38c1-453b-afb5-38c62d8654a3.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":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:56 GMT + - Thu, 07 Nov 2024 05:50:52 GMT etag: - - '"c5010273-0000-0200-0000-670f51740000"' + - '"13013899-0000-0200-0000-672c54c40000"' expires: - '-1' pragma: @@ -1194,7 +1194,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DF84050CA72F4B6AA3CB05177CDB3197 Ref B: CO6AA3150219019 Ref C: 2024-10-16T05:40:57Z' + - 'Ref A: 98C7E5EB8C0449FB8EE13C59F3484DCE Ref B: MAA201060514049 Ref C: 2024-11-07T05:50:53Z' status: code: 200 message: OK @@ -1208,12 +1208,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e36b954d-414d-49eb-8b75-8bc965b69b04":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f822989-3f1e-4451-9cfa-a97ef873c2ab":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1b34afe1-21c8-4e91-ac0c-79cb68f8ab08":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"secrets":{"secret_name1":{"value":"https://sample-kv.vault.azure.net/secrets/secret-name1/8022ff4b79f04a4ca6c3ca8e3820e757","type":"AKV_SECRET_URI"},"secret_name2":{"value":"https://sample-kv.vault.azure.net/secrets/secret-name2/8022ff4b79f04a4ca6c3ca8e3820e757","type":"AKV_SECRET_URI"}},"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://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/bc3356a9-4acb-4b58-9c3d-f4deffeff0ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A57Z&sr=b&sp=r&sig=fGwhmBABqKRIr3gNY7g13QzwyBk9aShFhcyxPWmkKf8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:57.6214683Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/369e758d-6a42-425b-af98-bfdae3ac4723?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A57Z&sr=b&sp=r&sig=K6mmO1YgNOnpGPXK4bEueUX0vMmTFguqAc3xi22i7SA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:57.6217086Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/ea30620a-7dff-4b5b-952c-ce3cd0b5ca66/d265338f-6391-4af1-be55-ebc4b5f4d61d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A57Z&sr=b&sp=r&sig=f7yTncAfuZ0SadVLKFlqg3veTf%2BdLkngX44%2Fyov6qJw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:57.6217768Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"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":"2024-10-16T05:39:47.442Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:56.241Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"e999bc39-50ee-4569-928b-578d99a1ada8":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2edb8822-dfe0-4782-9643-8d0b29ac6b3d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e57f3d76-5614-43d2-9243-a9f67513b0fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/546de362-00ef-453c-a52e-18aa18d1afcb?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A56Z&sr=b&sp=r&sig=esI3Km2NGMM4oFIWlJ3stAmZmL5BOE2GjcWGDJDE%2FHo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:56.6656901Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b50e01-9ecf-498d-a8be-4bab5d8967cf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A56Z&sr=b&sp=r&sig=8fp30ZrGD9xKLo%2FzNuHMXnYkMDwvVnXfVGjPfjwnO1s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:50:56.66611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/2a4b09b8-d961-439b-b328-2bd0d94a6ba9/a8b6ddc5-0576-4545-9999-929231bf299c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A56Z&sr=b&sp=r&sig=6FLimGEZw8H8nutt0Xwnbo%2F%2FgrwsHqD7gqZmFXBDK8M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:50:56.6662684Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":true,"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":"2024-11-07T05:49:43.037Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:51.992Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1222,17 +1222,17 @@ interactions: connection: - keep-alive content-length: - - '3547' + - '3542' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:57 GMT + - Thu, 07 Nov 2024 05:50:56 GMT mise-correlation-id: - - 5b933b4f-c311-4671-89a5-04b44e2bfb1f + - 55e77993-f604-4a58-915c-11b8909f7c46 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054057Z-166cf497cd4jdw4g4y9hv6ku6n00000007w0000000005xr2 + - 20241107T055056Z-16998b5679fjcfrzhC1MAAf4fc0000000740000000009k8x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1250,23 +1250,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.1989042Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.1989042Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8cf7423f-38c1-453b-afb5-38c62d8654a3.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":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:59 GMT + - Thu, 07 Nov 2024 05:50:59 GMT etag: - - '"c5010273-0000-0200-0000-670f51740000"' + - '"13013899-0000-0200-0000-672c54c40000"' expires: - '-1' pragma: @@ -1282,7 +1282,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DE8B44C236DE479583D3BF15F3291D85 Ref B: CO6AA3150218029 Ref C: 2024-10-16T05:40:59Z' + - 'Ref A: E506C71BD6644FB39914C31ADFF1C285 Ref B: MAA201060513021 Ref C: 2024-11-07T05:50:58Z' status: code: 200 message: OK @@ -1296,9 +1296,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-pf-test-case?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-pf-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -1311,15 +1311,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:41:00 GMT + - Thu, 07 Nov 2024 05:51:00 GMT mise-correlation-id: - - 9feeac20-841f-4240-acba-4f3957c1dd4d + - 2c2999b8-8c48-4f12-a6e9-ce8c7dbc47d5 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054059Z-15484bdf457kqcw7c4rchthr0n00000002kg00000000dd64 + - 20241107T055059Z-184f6b5dbd8t7brhhC1MAAabh000000002ag000000007e97 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1339,23 +1339,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.1989042Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.1989042Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8cf7423f-38c1-453b-afb5-38c62d8654a3.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":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:00 GMT + - Thu, 07 Nov 2024 05:51:01 GMT etag: - - '"c5010273-0000-0200-0000-670f51740000"' + - '"13013899-0000-0200-0000-672c54c40000"' expires: - '-1' pragma: @@ -1371,7 +1371,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 184BFFE08D4D403ABC295604FA18377B Ref B: CO6AA3150217049 Ref C: 2024-10-16T05:41:00Z' + - 'Ref A: 1386B70ACA1C4556880407BFA985884A Ref B: MAA201060514039 Ref C: 2024-11-07T05:51:01Z' status: code: 200 message: OK @@ -1385,9 +1385,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -1400,15 +1400,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:41:01 GMT + - Thu, 07 Nov 2024 05:51:02 GMT mise-correlation-id: - - 66870591-2a12-4580-8b68-5e6aa378ab05 + - 6743bd2a-2670-4a09-a5ee-9ed638f0a526 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054100Z-15484bdf457slw4lnr1b940h0g00000002y000000000c6k3 + - 20241107T055102Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdcx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1420,14 +1420,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": {"engineInstances": - 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": - {"824d6950-9020-480e-bc67-596f7a01a569": {"aggregate": "avg", "clientMetric": - "requests_per_sec", "condition": ">", "value": "78"}, "396c807f-16f9-4429-8b9d-d3a1f93608d0": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "5ddb68ff-1eb9-46bf-b681-1fa214b49df4": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, + "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": + false}, "passFailCriteria": {"passFailMetrics": {"1e4b9122-4479-4b0c-8541-f2f2d7291e29": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "c0c1ff67-725b-4717-abcf-3fbd7d06e65d": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "1040318f-7356-4b82-a4a8-5203086b425f": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -1436,36 +1437,36 @@ interactions: Connection: - keep-alive Content-Length: - - '765' + - '792' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"824d6950-9020-480e-bc67-596f7a01a569":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"396c807f-16f9-4429-8b9d-d3a1f93608d0":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5ddb68ff-1eb9-46bf-b681-1fa214b49df4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"invalid-zip-count-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:01.607Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:01.607Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1e4b9122-4479-4b0c-8541-f2f2d7291e29":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"c0c1ff67-725b-4717-abcf-3fbd7d06e65d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1040318f-7356-4b82-a4a8-5203086b425f":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"invalid-zip-count-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:51:03.352Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:03.352Z","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 connection: - keep-alive content-length: - - '1041' + - '1035' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:01 GMT + - Thu, 07 Nov 2024 05:51:03 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 6ee83eee-d8de-418c-82b3-d987cc2c2ff2 + - 56435ec8-ab66-4bf0-a65a-677c6684840a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054101Z-18489d46dccggs4rh24eyxmvec00000007t000000000ecb7 + - 20241107T055102Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bddu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1483,9 +1484,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -1501,13 +1502,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:01 GMT + - Thu, 07 Nov 2024 05:51:03 GMT mise-correlation-id: - - 90709905-fb9d-402b-8870-cbcd4d44ee0f + - a10d2936-3089-45b3-88a6-5241d0105e60 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054101Z-166cf497cd4q6m55tfpt35bu6000000007x0000000003cw5 + - 20241107T055103Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdek x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1536,33 +1537,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/2d2c31ad-c8ec-4b73-9135-19768e51bf95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A02Z&sr=b&sp=r&sig=9nSeW28kV7ldf2XJ6SkCal4HvQIaR9xdYseLGJrW4hU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:02.5215933Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A04Z&sr=b&sp=r&sig=HVcMaRA%2FHsDAc%2FCL1ueOuAK%2BtaL2PMMY2d5inV%2F%2FaT0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:04.1994731Z","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 connection: - keep-alive content-length: - - '568' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:02 GMT + - Thu, 07 Nov 2024 05:51:04 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - d0c47c92-c639-42b2-9c16-5782a7947edf + - a0bcc462-3ea1-4964-8460-2ca30bd4ba6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054102Z-15484bdf45772jkjsy4g2ytrdw000000031g000000000aqr + - 20241107T055103Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdex x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1580,12 +1581,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/2d2c31ad-c8ec-4b73-9135-19768e51bf95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A02Z&sr=b&sp=r&sig=iQKlrOq3uZfPQMecXiraQx0VJvTgATsxdu0uQj8V%2BiE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:02.9398154Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A04Z&sr=b&sp=r&sig=HOKPw65RbJgtVO1b6ByYoCx2kN6m%2BZCCkvBTXIirbRQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:04.4901616Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1598,13 +1599,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:02 GMT + - Thu, 07 Nov 2024 05:51:04 GMT mise-correlation-id: - - 7e0b68b4-5b36-4bdd-84cd-194ad010b8df + - 4e57277f-7a09-4086-a463-34626c323331 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054102Z-18489d46dcc6jcdlqqc3agq27c000000081g000000003194 + - 20241107T055104Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdfk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1622,12 +1623,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/2d2c31ad-c8ec-4b73-9135-19768e51bf95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A08Z&sr=b&sp=r&sig=ND8v2UsSWscDBGRRFLNi8xypOy2jieaQ4kXk541GErs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:08.3041907Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A09Z&sr=b&sp=r&sig=%2Fwyjd8clL8Kgsnt1XYvKWtattxq2gVQK4BVVX2JxTtM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:09.7747043Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1636,17 +1637,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:08 GMT + - Thu, 07 Nov 2024 05:51:09 GMT mise-correlation-id: - - 7725cab8-74a1-4b9f-ada3-ba5a5b4f04d0 + - 448e6952-c4bb-44f8-bd32-937eef0de199 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054108Z-166cf497cd47w9bdc501r87meg00000004fg0000000086n3 + - 20241107T055109Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdqz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1664,12 +1665,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/2d2c31ad-c8ec-4b73-9135-19768e51bf95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A13Z&sr=b&sp=r&sig=iFPtjQkuZj1OoHAr%2FRpPxAuC7UPTSo3YzJ8BPxtJIh0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:13.6675025Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A15Z&sr=b&sp=r&sig=bS8SNxyXJaceXA9ECBgjkIjXpNqG52XTll7gsremNaU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:15.0570634Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1678,17 +1679,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:13 GMT + - Thu, 07 Nov 2024 05:51:15 GMT mise-correlation-id: - - f790f2a7-780c-453f-ad77-348d9d819506 + - ef3f85c4-fac7-46c9-89ab-b66e0feea588 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054113Z-166cf497cd4jqnrcydhdctbvm400000007ug000000003vbd + - 20241107T055114Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bdxw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1706,12 +1707,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/2d2c31ad-c8ec-4b73-9135-19768e51bf95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A19Z&sr=b&sp=r&sig=9YlnmLyV2IIhqxEiMBZQJQD6el4oOWY3rI4NfYzZ2E0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:19.0387177Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A20Z&sr=b&sp=r&sig=GZo4cN99ENzOthfGpnp2t8blQvqqTNYg8hZTP%2FHNvv4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:20.33209Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1724,13 +1725,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:19 GMT + - Thu, 07 Nov 2024 05:51:20 GMT mise-correlation-id: - - 4f3be486-001b-4a5e-bb4f-d708375943d0 + - 4934a85e-f8dc-4c80-89a4-13e76ee342c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054118Z-166cf497cd4dfx7788bvx3ssu800000007ng00000000p8yq + - 20241107T055120Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000be4b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1748,12 +1749,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/2d2c31ad-c8ec-4b73-9135-19768e51bf95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A24Z&sr=b&sp=r&sig=d1I0xJ0WyRiJMFOu1012Hv1zRDvL3os0Uy13pROYrlk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:24.4098559Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A41Z&ske=2024-11-07T12%3A50%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A25Z&sr=b&sp=r&sig=uJTF3M7B3g15VEPaVDF0R%2BVoZTs70ataGc4AEMgvf9Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:25.6146388Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1762,17 +1763,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:24 GMT + - Thu, 07 Nov 2024 05:51:25 GMT mise-correlation-id: - - 917ae6cd-6de5-47be-a242-ea7f57ef8122 + - e86a9489-7974-43ae-b2e7-f3e9fafe5f4e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054124Z-166cf497cd45mnb2hc29k63vhc00000007ug000000003sc3 + - 20241107T055125Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000beau x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1790,12 +1791,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/2d2c31ad-c8ec-4b73-9135-19768e51bf95?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A48Z&ske=2024-10-16T12%3A39%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A29Z&sr=b&sp=r&sig=p7sPxRxiZyz4tjIHe80LG80SVpoIXeALbAy9Mx7xlqs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:29.7844445Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/dfe4f98e-961d-4157-882e-b09406bc830f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A30Z&sr=b&sp=r&sig=jk7BXYyNmcZaJMKWEUN0zkEyq9xlCmWyCSe%2BMPpGIhY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:30.8927116Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1804,17 +1805,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:29 GMT + - Thu, 07 Nov 2024 05:51:30 GMT mise-correlation-id: - - 36800cf2-3711-4adb-bdc6-a1b889f17f1f + - 9a6f0eb3-ab1f-44d6-bd5d-4b6c6d558f89 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054129Z-166cf497cd4txcnh6qkkc4ez8n00000007vg00000000g53q + - 20241107T055130Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000beh8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1843,33 +1844,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/7cccd6e3-1ac2-4077-bdb6-2a7832683e99?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A30Z&sr=b&sp=r&sig=eyQjuPGlizf1VAOzi%2F1R8%2BcijA6ctdeqG6ihGs1jb7A%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:30.3140242Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A31Z&sr=b&sp=r&sig=g5ZJiX0zOyP0CpPDK1LY%2Fls2dSK2n52E1bvancnxE5U%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:31.9652437Z","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 connection: - keep-alive content-length: - - '578' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:30 GMT + - Thu, 07 Nov 2024 05:51:31 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-03-01-preview mise-correlation-id: - - 97203ed7-b12c-4f0d-b51d-94dec5a6cc26 + - 848f93b5-7f0e-4dd0-b9d0-46bcf73cad5e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054129Z-166cf497cd45mnb2hc29k63vhc00000007vg000000001q27 + - 20241107T055131Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000behm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1887,54 +1888,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/7cccd6e3-1ac2-4077-bdb6-2a7832683e99?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A30Z&sr=b&sp=r&sig=eyQjuPGlizf1VAOzi%2F1R8%2BcijA6ctdeqG6ihGs1jb7A%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:30.8193636Z","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 - connection: - - keep-alive - content-length: - - '578' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:41:30 GMT - mise-correlation-id: - - 978256f0-a59f-4531-bc85-14fbc12910c6 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054130Z-18489d46dccd6w2hyw4dcpanpw000000082g00000000083h - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/7cccd6e3-1ac2-4077-bdb6-2a7832683e99?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A36Z&sr=b&sp=r&sig=DdrTp9gXNDCcZGoDFgIUCvy2fOFWSXL1vJhDWoXAr80%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:36.2290303Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A32Z&sr=b&sp=r&sig=UahwfcWmmf2NePOSNXWJuWdMvF3rhvPwYyKzFOyelSk%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:32.2756689Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1947,13 +1906,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:36 GMT + - Thu, 07 Nov 2024 05:51:32 GMT mise-correlation-id: - - 98f26347-218c-4a3a-8e2c-23e42c02f80d + - bf2a8664-35f0-4199-bd84-272fc3d27848 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054136Z-15484bdf4576j5mtr8k4ftgbd400000002qg00000000he5m + - 20241107T055132Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bekx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1971,12 +1930,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/7cccd6e3-1ac2-4077-bdb6-2a7832683e99?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A41Z&sr=b&sp=r&sig=daTuS4cN3iZKsTl5g3BCCPtoM4xny5lUkL11GjwWjU8%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:41.6071738Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A37Z&sr=b&sp=r&sig=8%2BCyjIcMdDpoUjvVtxvUzL5u9HYci211IPccy%2BthOA4%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:37.5740672Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1985,17 +1944,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:41 GMT + - Thu, 07 Nov 2024 05:51:37 GMT mise-correlation-id: - - a3758c71-fe75-4c51-b15c-8c28e6bae915 + - cd775902-055b-4fee-85ac-4d183ad17c16 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054141Z-17f5d849667vm2s91vagzspe4s00000005ag0000000000kq + - 20241107T055137Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000beta x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2013,12 +1972,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/7cccd6e3-1ac2-4077-bdb6-2a7832683e99?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A46Z&sr=b&sp=r&sig=5XpqU518FuLE6ah65LeonfwIAmxUFXNu8kB8O8o2W0k%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:46.9107391Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A42Z&sr=b&sp=r&sig=iJTBuHDTnFVXbGNXUvuR3CH%2ByW%2FtjI9GuP6HOqEyvc8%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:42.8506614Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2027,17 +1986,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:46 GMT + - Thu, 07 Nov 2024 05:51:42 GMT mise-correlation-id: - - de3f52a1-26d2-49b4-b8db-947dcc9de0d8 + - e27005ac-a2f7-49eb-a6e2-ab414a476ee9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054146Z-165bfd566cfdmznfsy8bqd99tg00000009ng000000007gy6 + - 20241107T055142Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bf24 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2055,12 +2014,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/7cccd6e3-1ac2-4077-bdb6-2a7832683e99?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A52Z&sr=b&sp=r&sig=ApUzavpgHjTPPx4Jp06%2B8gVyg9wIEgfRMYqehY18FJc%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:52.1952789Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T12%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A48Z&sr=b&sp=r&sig=Ztl2fohNBZenKjxZyPai7t2a%2BF13LvqyRURMaoViQkQ%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:48.1374661Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2073,13 +2032,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:52 GMT + - Thu, 07 Nov 2024 05:51:48 GMT mise-correlation-id: - - a2f58989-7867-4e99-b1a1-f940e53855a9 + - e07f9434-6016-491f-a736-58143ca4522d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054151Z-165bfd566cfwjg8lbgwdvhqf0g00000009x0000000001xaw + - 20241107T055147Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfcd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2097,12 +2056,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-1.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/7cccd6e3-1ac2-4077-bdb6-2a7832683e99?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A57Z&sr=b&sp=r&sig=N5p1PHpQoLbmkhpb0bU3aUsSDA%2Fu%2FmExEQzBKdcDI3w%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:57.3834722Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/a9338fab-1927-435c-887f-232b069f298b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A53Z&sr=b&sp=r&sig=Yuc8L%2BjR9izwhvfYjqvKsIH9gUe6iUMu5qB1MivZPBg%3D","fileName":"additional-ZIP-artifact-1.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:53.5195771Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2111,17 +2070,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:57 GMT + - Thu, 07 Nov 2024 05:51:53 GMT mise-correlation-id: - - c37a5379-0a0d-4961-a725-06b36ef44034 + - b12b42a7-50bf-47b3-8d69-a5d135dd43d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054157Z-17f5d849667vm2s91vagzspe4s0000000560000000009pd2 + - 20241107T055153Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfkc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2150,33 +2109,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A58Z&sr=b&sp=r&sig=RlJ%2Fnw6bCFcw0wPRXSdnDwYbE997GwcP6SBSrvNRAXA%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:58.7971888Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A51%3A54Z&ske=2024-11-07T21%3A51%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A54Z&sr=b&sp=r&sig=6SqeafC6RAVvT4y0e26WLB5yqTKhwgf5Q81Oahkjhmg%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:54.0546385Z","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 connection: - keep-alive content-length: - - '576' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:58 GMT + - Thu, 07 Nov 2024 05:51:54 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-03-01-preview mise-correlation-id: - - 0846531e-042f-4f9f-8ade-50d5b64a1164 + - 37b876f1-0f58-4182-9bc4-7a77af2319b2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054157Z-165bfd566cfvnfldckvfavskxn00000007f000000000378s + - 20241107T055153Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfkm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2194,12 +2153,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A59Z&sr=b&sp=r&sig=AbrZ%2BQ0ER1qD%2FUYCHxQY8zYyIIU5%2F4H%2FEqrpDZXWtYQ%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:59.1199738Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A54Z&sr=b&sp=r&sig=fJRXy2V%2FTJcwY95Vmu1TM8brrZAH0bOEjgDxGbmjkcQ%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:54.3498713Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2208,17 +2167,17 @@ interactions: connection: - keep-alive content-length: - - '582' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:59 GMT + - Thu, 07 Nov 2024 05:51:54 GMT mise-correlation-id: - - 7eabe11c-6da3-4d4d-b2b8-b2f145c08f2a + - be817aa0-37fa-4b44-a365-08205780e623 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054158Z-17f5d849667xc28w1ckc6mbf4w00000007d0000000003xrw + - 20241107T055154Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfmf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2236,12 +2195,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A04Z&sr=b&sp=r&sig=4WI0Scp4d4GLLulIVRG7Q2uxETJ4TlEu%2BMfhJ7XuA9M%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:04.5245982Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A59Z&sr=b&sp=r&sig=fszrplUZDxNDDX%2BHxgArp39LU6gYpM3VnnGdIwTvuMc%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:01:59.6392899Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2254,13 +2213,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:04 GMT + - Thu, 07 Nov 2024 05:51:59 GMT mise-correlation-id: - - 12bd7753-dd62-4426-9cef-66c1c0e37a85 + - 2590765c-c79a-446c-8a1a-505dab4cbd78 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054204Z-15484bdf4576j5mtr8k4ftgbd400000002ug000000006am6 + - 20241107T055159Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bfu0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2278,12 +2237,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A09Z&sr=b&sp=r&sig=qYCCrdT8JnQJNN6VtQO4cSvZaBTnER95jjpJgff6QxI%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:09.9037651Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A04Z&sr=b&sp=r&sig=tovk1TBHUv9WESYex7XkIxoEZ3jzZ6jpBs3dh7vaOPA%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:04.9211346Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2296,55 +2255,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:09 GMT - mise-correlation-id: - - 72806a42-d92a-4ff2-be1a-a281796c4fbe - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054209Z-18489d46dcccphr7hbyy83t0cc00000007ug00000000p1pp - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A15Z&sr=b&sp=r&sig=nuhtqDfWHXXxAcJ4BojUzwzaJGQwYPkPiv65iJJk%2Ba0%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:15.1847415Z","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 - connection: - - keep-alive - content-length: - - '576' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:15 GMT + - Thu, 07 Nov 2024 05:52:04 GMT mise-correlation-id: - - 60d89e0f-f5fe-4a25-832f-51c9a16dcf9f + - c3a4c3a8-fabe-4048-b90c-efbe23d4aeef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054214Z-165bfd566cf4ghtzyebch8wysc00000004s00000000021zr + - 20241107T055204Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bg2b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2362,12 +2279,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A20Z&sr=b&sp=r&sig=HAt97wzzaMIfAcQP3yX19ZJcFpK3cB3j0GM91osW%2BtU%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:20.4737601Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A10Z&sr=b&sp=r&sig=RbriTatxKymf29qizu7cF95RY2WAxUHLPFnRmjFlbe0%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:10.218442Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2376,17 +2293,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:20 GMT + - Thu, 07 Nov 2024 05:52:10 GMT mise-correlation-id: - - 1a9efd2f-5943-4035-88ec-0cfc0b1efb05 + - cc18a64f-1f2c-48c8-a993-7510375e6055 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054220Z-17f5d849667p5mkz7t2q3k9cbn00000006kg0000000079vd + - 20241107T055210Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bg7m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2404,12 +2321,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A25Z&sr=b&sp=r&sig=QAzRQtD5NUJLjUpEyTVmrvi9PBRCfYSgQwpy%2B899CQI%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:25.7978298Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/c7342daf-3ea7-4155-b810-f07298311f16?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A15Z&sr=b&sp=r&sig=m4BIcTb%2FChO44tIt%2FP7nHwtL3hsBl7Gfp9LriSAdiFU%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:15.4982286Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2422,55 +2339,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:25 GMT + - Thu, 07 Nov 2024 05:52:15 GMT mise-correlation-id: - - cd7bab7a-6850-4617-ab6b-458ce08a53c0 + - fa5fc66a-0468-4d3d-ae12-e91010512ec4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054225Z-165bfd566cffhs2674zxz6xayc000000090g00000000f0qf - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-2.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/d6fde2db-113c-4ce3-a11e-0120233a71de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A30Z&sr=b&sp=r&sig=7Yk4WsDSSiSPCEmMT8pQAhOWCzxDd0vcAEOHPKQEqCw%3D","fileName":"additional-ZIP-artifact-2.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:30.9911781Z","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 - connection: - - keep-alive - content-length: - - '572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:30 GMT - mise-correlation-id: - - 7ffe4050-7a59-417c-8352-5f1dffd5925d - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054230Z-17f5d849667h7djshftd289dx000000007s000000000et4g + - 20241107T055215Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgce x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2499,33 +2374,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/70eb16d7-7bdc-423f-9ee2-f6c111450572?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A31Z&sr=b&sp=r&sig=kvj1inhbQfYY7tPQu5VT9ku6AfjMe7l%2FO4ucAM3fE%2F4%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:31.4822246Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A16Z&sr=b&sp=r&sig=9DXpqeLFG8iq22bPn%2F5RF5EdaLAO0Nn2TcRx2eYGNHw%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:16.0036167Z","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 connection: - keep-alive content-length: - - '578' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:31 GMT + - Thu, 07 Nov 2024 05:52:16 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-03-01-preview mise-correlation-id: - - a0fc66e3-2f1b-4e1a-91d2-4cbb6a86e818 + - ddc77aa6-bb74-4800-b3d0-d28f0b7faa68 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054231Z-17f5d849667bqf6xbnv2zbvn8n00000009mg0000000018up + - 20241107T055215Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgcn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2543,12 +2418,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/70eb16d7-7bdc-423f-9ee2-f6c111450572?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A31Z&sr=b&sp=r&sig=65EuF8hUhNWOmrk6EDexz5E%2BkYlCrZP6WA99WQKUbWc%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:31.825688Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A16Z&sr=b&sp=r&sig=SWADJRgmJIBrcIaO1Ks1FhXr%2FS0bE1wnpj0%2Bg2iM4Ds%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:16.2922644Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2557,17 +2432,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:31 GMT + - Thu, 07 Nov 2024 05:52:16 GMT mise-correlation-id: - - 5a817e9d-1384-41c9-a7f1-be7645efd629 + - 1a970e8c-8dc9-40bc-b02e-254e2b44eeac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054231Z-165bfd566cfj6ns5b4mns3uqvn000000092000000000b9kz + - 20241107T055216Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgd8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2585,12 +2460,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/70eb16d7-7bdc-423f-9ee2-f6c111450572?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A37Z&sr=b&sp=r&sig=4Then2SqXw9KO8mLodgasqd2JjFZsfIVR8zcMiXO1ME%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:37.1394725Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A21Z&sr=b&sp=r&sig=lnebIWB%2BfAMG%2B6xuonn%2BuKMZE28vWA7L5tGKKT0mJfs%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:21.5865083Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2599,17 +2474,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '580' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:37 GMT + - Thu, 07 Nov 2024 05:52:21 GMT mise-correlation-id: - - 8854e119-61ad-41b3-b5a2-2e61fcb0e83d + - 2763d5f9-d2ae-49aa-a322-ff557b3b9dd5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054236Z-165bfd566cfr8pkv004hp3fs3g00000005e0000000004fty + - 20241107T055221Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgkf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2627,12 +2502,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/70eb16d7-7bdc-423f-9ee2-f6c111450572?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T12%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A42Z&sr=b&sp=r&sig=%2BY8mjPI7aFK0P7hYy7GOqHCcI5vPEN5vizyVXA6TkEM%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:42.4938234Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A26Z&sr=b&sp=r&sig=Ax%2BpLE9EWA1d%2BiQkfg1rKO%2FpwOOQ2KI1gVkszpMsFsc%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:26.871679Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2641,17 +2516,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:42 GMT + - Thu, 07 Nov 2024 05:52:26 GMT mise-correlation-id: - - b494e0ed-ebe9-47bb-84e3-aeab5172b9c6 + - d62bc3e7-28e4-4fcc-a425-7e7d11dfd379 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054242Z-165bfd566cftt5pk5sesfc5t6w00000005yg0000000081q2 + - 20241107T055226Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bgvx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2669,12 +2544,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/70eb16d7-7bdc-423f-9ee2-f6c111450572?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A47Z&sr=b&sp=r&sig=q04ZaN4gFj96HxWoQ3Ru8pbgggh7XNFqSMr1rNLnY%2Fw%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:47.8366664Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A52Z&ske=2024-11-07T12%3A49%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A32Z&sr=b&sp=r&sig=Y9TL%2FWzf8DD2YFnU%2F9tpby%2B0vivF6CKWfRKUVrFAQoY%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:32.1798132Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2683,17 +2558,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '580' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:47 GMT + - Thu, 07 Nov 2024 05:52:32 GMT mise-correlation-id: - - b4ed90c3-8fd6-495f-af6b-d9fb8457960d + - 9e254e39-d586-4137-b47c-880e57a88280 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054247Z-166cf497cd4dfx7788bvx3ssu800000007vg000000001h9k + - 20241107T055231Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh2e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2711,12 +2586,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/70eb16d7-7bdc-423f-9ee2-f6c111450572?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A53Z&sr=b&sp=r&sig=eisguI1S9fiJjao4QGmZXAKSbzjwu4fqzUWo4TtNf24%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:53.0360279Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8d20a4ae-98b9-45d1-a5a4-34a3e5411ecc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A51Z&ske=2024-11-07T19%3A50%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A37Z&sr=b&sp=r&sig=h2Fa%2FIbi2GLcGQvCMXbhXNQfKHg11vxYI8BVlnFWDqo%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:37.4619687Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2729,55 +2604,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:53 GMT - mise-correlation-id: - - 61bf95ea-40f9-4659-b59c-514f237ee2bd - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054252Z-18489d46dccfkdmbtzwpeeg8f800000007xg00000000gzdr - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-3.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/70eb16d7-7bdc-423f-9ee2-f6c111450572?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A58Z&sr=b&sp=r&sig=Venb8%2FR09R%2BRMitMWQjen8UHcMrlaaizhA1G9dAc114%3D","fileName":"additional-ZIP-artifact-3.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:58.2697779Z","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 - connection: - - keep-alive - content-length: - - '576' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:58 GMT + - Thu, 07 Nov 2024 05:52:37 GMT mise-correlation-id: - - 1f3632f2-3475-4ce3-8021-81fc99ef8c9d + - bfccfb32-3dfb-44f7-ad6d-39f2ac6569f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054258Z-18489d46dccg5n69wa1d0046r400000007c000000000cpbh + - 20241107T055237Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh88 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2806,33 +2639,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T21%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A58Z&sr=b&sp=r&sig=damAAh%2BKo9Af4Kv%2BVWPm1aDnduX3%2FpBTtg2U63WNFRs%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:58.6812923Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A37Z&sr=b&sp=r&sig=Ifl0xP3sy6QUAn8c0rj7HCx7KFvia%2FBsioPN26zgMOY%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:37.9710825Z","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 connection: - keep-alive content-length: - - '580' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:58 GMT + - Thu, 07 Nov 2024 05:52:38 GMT location: - - https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-03-01-preview + - https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-03-01-preview mise-correlation-id: - - 6fd5a710-216e-4590-acd9-997f82c65c6f + - 6a1f9771-b1a0-42fa-94dd-ad6a7c8e9bdb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054258Z-166cf497cd4jqnrcydhdctbvm400000007ug000000003z1u + - 20241107T055237Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh8q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2850,12 +2683,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A50Z&ske=2024-10-16T12%3A39%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A59Z&sr=b&sp=r&sig=JdJS4Juh%2FDjw%2BuLVH6S4adQVY5chje6iol3SNgn4z0E%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:59.0932615Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A38Z&sr=b&sp=r&sig=CSYbmNS%2FIxt8APUfV%2Bee9oBL1ZaPvDdAUQfThJ1OMJo%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:38.2542438Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2868,13 +2701,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:59 GMT + - Thu, 07 Nov 2024 05:52:38 GMT mise-correlation-id: - - 5313ee37-8579-41ce-86de-635ce2c855a6 + - 1a16a8a3-920b-4b66-80c0-a79c12b45fdf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054258Z-15484bdf45772jkjsy4g2ytrdw00000002w000000000f3ee + - 20241107T055238Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bh9a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2892,12 +2725,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A02Z&ske=2024-10-16T21%3A41%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A04Z&sr=b&sp=r&sig=bXO9Df3%2B6vEH6tctJDi%2BgZdHN3cV1TiFfS6F0PAfzaI%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:04.4841745Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A51%3A54Z&ske=2024-11-07T21%3A51%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A43Z&sr=b&sp=r&sig=9IEZxRaLy64PTgs0FjjvyigyaX%2FpC5EL8shT5AFMMjY%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:43.5408932Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2906,17 +2739,17 @@ interactions: connection: - keep-alive content-length: - - '578' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:04 GMT + - Thu, 07 Nov 2024 05:52:43 GMT mise-correlation-id: - - 425aae4e-1ce6-4362-aa5b-e0598c048374 + - 6194db38-e3b3-4ad5-b89f-9f998db4dd43 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054304Z-15484bdf45782nr6fa3f22900400000002c000000000hse4 + - 20241107T055243Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bhen x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2934,12 +2767,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A09Z&sr=b&sp=r&sig=0L8CnDPT7EKaSQlHxozhLZvaQhyOEqwRCEW2myLryfU%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:09.752226Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A48Z&sr=b&sp=r&sig=S8ptQ2fQrucec0B6gkBjOSRZzotqNDeUMSuyUsPlM4o%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:48.8709205Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2948,17 +2781,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:09 GMT + - Thu, 07 Nov 2024 05:52:48 GMT mise-correlation-id: - - 338e6d5a-6d53-4442-9bd7-b4bbfd28b349 + - 74e2eaf3-3530-4b53-9f96-72d6010cc255 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054309Z-165bfd566cfdx5qskkr4cf20yg00000007tg000000000t6c + - 20241107T055248Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bhps x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2976,12 +2809,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A15Z&sr=b&sp=r&sig=QNQXNoCbKOHlGlh%2FocUXpgkcPzV6%2BxpqNqa9DpdBGug%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:15.0950782Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A51%3A54Z&ske=2024-11-07T21%3A51%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A55Z&sr=b&sp=r&sig=UlnOBr0hQL0d%2BL9Rq9T4E2EdbZU0uI8ZcPBjT87nCMs%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:55.642666Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -2990,17 +2823,17 @@ interactions: connection: - keep-alive content-length: - - '578' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:15 GMT + - Thu, 07 Nov 2024 05:52:55 GMT mise-correlation-id: - - a469d702-eff5-4de4-bcf3-fb63c3827ba2 + - 010456a2-f5df-4be2-862b-565d360e9003 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054314Z-17f5d849667qxjvzggu6atsuxc00000008ag0000000089a3 + - 20241107T055253Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bhxu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3018,12 +2851,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A30Z&ske=2024-10-16T21%3A41%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A20Z&sr=b&sp=r&sig=dvaOXM7CHqK0ROLUlQNnDPaZ4pvoVRramMKEAoUn1jU%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:20.4011514Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A19Z&ske=2024-11-07T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A00Z&sr=b&sp=r&sig=P0Rd0PxGAcaCvaTM8oxvTvKyosOWFIjWAyO0PLmOt24%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:00.9249422Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -3036,13 +2869,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:20 GMT + - Thu, 07 Nov 2024 05:53:00 GMT mise-correlation-id: - - 6dcd83f5-c8bc-4d50-b928-9fa7935e1849 + - 78131669-4de9-40cd-b299-18c5226aa3fb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054320Z-165bfd566cf4k2zhgy89gpw604000000093g000000002un3 + - 20241107T055300Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bk6w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3060,12 +2893,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A25Z&sr=b&sp=r&sig=etNb9tN2DY3tr8B7IiUdoVyR0sWyTsrBxhyo28ILDH0%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:25.6834771Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://evkeagxvlxujd041uwadm0mi.z30.blob.storage.azure.net/91f74f70-5551-450b-8767-ca9c624e2206/8c403fc9-ad88-4f9a-af19-13bb5a8691e8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A47Z&ske=2024-11-07T21%3A49%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A06Z&sr=b&sp=r&sig=h%2BmyOlas4JW77dTsMSr9xjnCB%2FmU2DM7XZi%2BuiGTiGI%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:06.7859281Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -3074,17 +2907,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:25 GMT + - Thu, 07 Nov 2024 05:53:06 GMT mise-correlation-id: - - 4821a2ed-d5f8-46c5-a173-b6c1a1ff381d + - 251506f7-1821-4429-b77c-a4651174f254 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054325Z-17f5d849667qg6t9uvfp3m2p2w00000005t00000000015e6 + - 20241107T055306Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bkcs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3093,7 +2926,16 @@ interactions: code: 200 message: OK - request: - body: null + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj + ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS + AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u + YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA + AAB1AAAAAAA= + - 0 + - null headers: Accept: - application/json @@ -3101,39 +2943,45 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A31Z&sr=b&sp=r&sig=9kEARJGZ6IzG8rlrt82uuAMfoMec8q25E13LUERFaXc%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:31.0033535Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"error":{"code":"QuotaExceeded","message":"The maximum number of zip + files that can be uploaded per test is 5. Please delete an existing zip file + before uploading a new one.","target":null,"details":null}}' 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 connection: - keep-alive - content-length: - - '574' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 16 Oct 2024 05:43:30 GMT + - Thu, 07 Nov 2024 05:53:07 GMT mise-correlation-id: - - 8feeb268-a386-43b8-b3e5-adb66fe8e8e7 + - f59cb264-7435-4176-91b8-5b7509a6ee7e strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked x-azure-ref: - - 20241016T054330Z-17f5d849667b4k641769x7f50c00000004dg00000000dpfw + - 20241107T055306Z-184f6b5dbd8hzmgnhC1MAAntx000000006v000000000bkdv x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-error-code: + - QuotaExceeded status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -3144,35 +2992,39 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-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: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A22Z&ske=2024-10-16T12%3A40%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A36Z&sr=b&sp=r&sig=BFCS5ZKG5%2FGyD5zw7M48wa7Y0aMdUNGu3RysRqz5X%2F8%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:36.2996742Z","validationStatus":"VALIDATION_INITIATED"}' + 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":"2024-11-07T05:48:27.9889402Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.9889402Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"34507f0f-2ee4-4a0b-9065-7d5165bbeef3.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 - connection: - - keep-alive + cache-control: + - no-cache content-length: - - '578' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:36 GMT - mise-correlation-id: - - d2e35566-527d-4c75-a7bb-0bae3e716b92 + - Thu, 07 Nov 2024 05:53:08 GMT + etag: + - '"13013899-0000-0200-0000-672c54c40000"' + expires: + - '-1' + pragma: + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054336Z-17f5d849667qxjvzggu6atsuxc00000008b00000000075dm 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: 0FE69E4777A8432898E558D337D33E3E Ref B: MAA201060515017 Ref C: 2024-11-07T05:53:08Z' status: code: 200 message: OK @@ -3186,49 +3038,44 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-4.zip?api-version=2024-05-01-preview + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-05-01-preview response: body: - string: '{"url":"https://ctyghrybubjzmqw7yfd3lpjd.z42.blob.storage.azure.net/c52cf709-0618-4ae1-8422-597080bdc8cb/14f4b036-de88-4216-a14c-e0ba6c08ab0c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A23Z&ske=2024-10-16T21%3A40%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A41Z&sr=b&sp=r&sig=4s%2FFnn3NEmnG13uKXXiMSaill5MHgfvCdaiPlGowZJM%3D","fileName":"additional-ZIP-artifact-4.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:41.6148047Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with + given identifier invalid-disable-public-ip-test-case","target":null,"details":null}}' 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 connection: - keep-alive - content-length: - - '574' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 16 Oct 2024 05:43:41 GMT + - Thu, 07 Nov 2024 05:53:11 GMT mise-correlation-id: - - 0ad67861-b96c-433d-9158-d90d9bb30d3c + - aeafe3e6-09be-4ef9-947b-357a558fbcf1 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked x-azure-ref: - - 20241016T054341Z-17f5d8496676mhmt5p9sr0x1bc00000008ng00000000c1nt + - 20241107T055310Z-184f6b5dbd8glvzshC1MAAb4m0000000072g000000003cez x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-error-code: + - TestNotFound status: - code: 200 - message: OK + code: 404 + message: Not Found - request: - body: !!python/object/new:_io.BytesIO - state: !!python/tuple - - !!binary | - UEsDBBQACAAIAANbLVkAAAAAAAAAABIAAAATACAAYWRkaXRpb25hbC1kYXRhLmNzdlVUDQAHf9Pj - ZneG/2a5hP9mdXgLAAEEAAAAAAQAAAAAS9RJ0knWSeHlMtQx0jHWMeHlAgBQSwcI/dwPKxQAAAAS - AAAAUEsBAhQDFAAIAAgAA1stWf3cDysUAAAAEgAAABMAIAAAAAAAAAAAALaBAAAAAGFkZGl0aW9u - YWwtZGF0YS5jc3ZVVA0AB3/T42Z3hv9muYT/ZnV4CwABBAAAAAAEAAAAAFBLBQYAAAAAAQABAGEA - AAB1AAAAAAA= - - 0 - - null + body: '{"displayName": "invalid-disable-public-ip-test-case", "keyvaultReferenceIdentityType": + "SystemAssigned", "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": + {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "publicIPDisabled": + true}' headers: Accept: - application/json @@ -3237,18 +3084,18 @@ interactions: Connection: - keep-alive Content-Length: - - '236' + - '271' + Content-Type: + - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - content-type: - - application/octet-stream - method: PUT - uri: https://8cf7423f-38c1-453b-afb5-38c62d8654a3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-zip-count-test-case/files/additional-ZIP-artifact-5.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://34507f0f-2ee4-4a0b-9065-7d5165bbeef3.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-disable-public-ip-test-case?api-version=2024-05-01-preview response: body: - string: '{"error":{"code":"QuotaExceeded","message":"The maximum number of zip - files that can be uploaded per test is 5. Please delete an existing zip file - before uploading a new one.","target":null,"details":null}}' + string: '{"error":{"code":"InvalidNetworkConfigurationException","message":"Network + configuration is invalid. Public IP can be disabled only for load tests targeting + private endpoints.","target":null,"details":null}}' headers: api-supported-versions: - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview @@ -3257,21 +3104,21 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:43:41 GMT + - Thu, 07 Nov 2024 05:53:11 GMT mise-correlation-id: - - b2df4488-4777-469a-a91c-ebf129d0c297 + - b9114dbb-b2f5-408d-b1c4-23b4332183af strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054341Z-17f5d849667xvkmtuucmr70ff400000006bg00000000fy3b + - 20241107T055311Z-184f6b5dbd8glvzshC1MAAb4m0000000072g000000003cfs x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-error-code: - - QuotaExceeded + - InvalidNetworkConfigurationException status: code: 400 message: Bad Request 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 new file mode 100644 index 00000000000..3ea6cc9de14 --- /dev/null +++ b/src/load/azext_load/tests/latest/recordings/test_load_test_create_and_update_vnet.yaml @@ -0,0 +1,2322 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet subnet list + Connection: + - keep-alive + ParameterSetName: + - --resource-group --vnet-name + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + 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/\"6f9b4477-5814-44a8-9cd2-f5ff8af11da0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}]}' + headers: + cache-control: + - no-cache + content-length: + - '491' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 06d73f93-fa34-4b5a-9f58-5d792a63ac4a + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 929D3AF2076A4279ACBB79EC8612906D Ref B: MAA201060513029 Ref C: 2024-11-07T05:49:39Z' + status: + code: 200 + message: '' +- 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.11.9 (Windows-10-10.0.26100-SP0) + 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":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:41 GMT + etag: + - '"13011799-0000-0200-0000-672c54c20000"' + 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: + - '16498' + x-msedge-ref: + - 'Ref A: 1D94A502E074439D908BC4FB61586429 Ref B: MAA201060516011 Ref C: 2024-11-07T05:49:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with + given identifier create-update-vnet-test-case","target":null,"details":null}}' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + connection: + - keep-alive + content-type: + - application/json + date: + - Thu, 07 Nov 2024 05:49:43 GMT + mise-correlation-id: + - 172d8390-c857-42b2-85c5-8b4009526fc9 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-azure-ref: + - 20241107T054942Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6em + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-error-code: + - TestNotFound + status: + code: 404 + message: Not Found +- request: + body: '{"displayName": "Create_and_update_vnet_with_config_test", "description": + "This is a load test created with config specific to vnet", "keyvaultReferenceIdentityType": + "SystemAssigned", "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7zupb5dvcc4wecm4n/providers/Microsoft.Network/virtualNetworks/clitest-load-3uvwrzqrhp2vvymx7/subnets/default", + "environmentVariables": {}, "secrets": {}, "loadTestConfiguration": {"engineInstances": + 5, "quickStartTest": false, "splitAllCSVs": false}, "publicIPDisabled": true}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '554' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":true,"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":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:49:44.277Z","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 + connection: + - keep-alive + content-length: + - '739' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:44 GMT + location: + - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-03-01-preview + mise-correlation-id: + - f30fdc22-7f53-459f-9b7f-103055a29a41 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T054943Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6f6 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[]}' + 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 + connection: + - keep-alive + content-length: + - '12' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:44 GMT + mise-correlation-id: + - c3051b2f-4b3d-499c-ac5e-7f1dc4f73612 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T054944Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6gd + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=cZeXdAvzHZZbUMM9dKhbviaVlwM%2FlZzAm%2FZxYhslQfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:46.3326818Z","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 + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:46 GMT + location: + - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - 8eee7ba3-b2ad-4b6f-a219-422d13f47522 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T054944Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6gp + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A46Z&sr=b&sp=r&sig=cZeXdAvzHZZbUMM9dKhbviaVlwM%2FlZzAm%2FZxYhslQfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:46.6144228Z","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 + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:46 GMT + mise-correlation-id: + - 7e916f08-610d-4da3-94fd-d97cc5078a95 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T054946Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6mr + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A51Z&sr=b&sp=r&sig=iB2TehFa%2B71aThDycJtqSPsyOe3apPMKme6kHrnfPos%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:51.9550722Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:52 GMT + mise-correlation-id: + - 153055a5-9116-4ebe-8c21-6594d9e9f10f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T054951Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b6w0 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T05%3A59%3A57Z&sr=b&sp=r&sig=55jVJOs9yFDvOecdN0W6svMySxce5xbXNlha9yMD%2F0U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T05:59:57.2625157Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:49:57 GMT + mise-correlation-id: + - d4df58ef-fc89-4f9b-ac1f-40a9d737697b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T054957Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b71n + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A02Z&sr=b&sp=r&sig=yLWJMGdBIa60J%2BGxiPZMo%2BdLydg9zR15%2FLos9ZLEueM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:02.5477453Z","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 + connection: + - keep-alive + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:02 GMT + mise-correlation-id: + - 018a9a4a-d91b-47b0-8e6e-5829087c291b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055002Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b79n + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A07Z&sr=b&sp=r&sig=72ss7HbKvgsn8WUVIHHq8F7ELYut3B%2FEQ8A7tK4eZtY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:07.9195018Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:07 GMT + mise-correlation-id: + - cb3df68d-60d0-4d1d-a6f0-7a1e350d3a2c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055007Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7e7 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A13Z&sr=b&sp=r&sig=aiwWNZc69aLtCyYFRycQ5zbSnLct%2BavjVkORnIqqNxs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:13.2053534Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:13 GMT + mise-correlation-id: + - c76e1bf5-cf56-4cbd-9b9a-7425c1d2def2 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055013Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7mc + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A18Z&sr=b&sp=r&sig=lvzcZEydQwZQwfWMBI5VAKs5e6S6Uy9GxrItvuKrp%2FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:18.4771758Z","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 + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:18 GMT + mise-correlation-id: + - 19beab13-8f3c-44c9-bff4-dd098a84c8b0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055018Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7sy + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A18Z&sr=b&sp=r&sig=Gx1cORi%2FNs2VlCsyFuTPv9fnk1sVJyIZKZCMdXM0mhI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:18.7561759Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"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":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:18.384Z","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 + connection: + - keep-alive + content-length: + - '1317' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:18 GMT + mise-correlation-id: + - d46a03c0-aff3-4dfe-8cff-972d4cd23c5e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055018Z-184f6b5dbd8wqhb5hC1MAAgerw000000066000000000b7tc + 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.11.9 (Windows-10-10.0.26100-SP0) + 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":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:19 GMT + etag: + - '"13011799-0000-0200-0000-672c54c20000"' + 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: + - '16498' + x-msedge-ref: + - 'Ref A: CE6EAF662F884A828856CF837E2D5808 Ref B: MAA201060513035 Ref C: 2024-11-07T05:50:19Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A21Z&sr=b&sp=r&sig=x65hdr2pGEmDUpQrB9mgN52HIhON4oMHtnq4Pym6Nps%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:21.9688888Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"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":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:18.384Z","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 + connection: + - keep-alive + content-length: + - '1315' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:22 GMT + mise-correlation-id: + - f43f85d9-1382-4429-b997-b5c99767fb32 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055021Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m43 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "CLI-Test", "description": "Test created from az load test + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, + "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false}, "passFailCriteria": + {"passFailMetrics": {"41daf043-df7c-46b2-a19e-f5801734ddc9": {"aggregate": "avg", + "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "1bad08e4-a0b8-4934-85ff-373b5f1b2a4f": + {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": + "50"}, "28f98a17-53e8-4c82-b94b-636fb78f5eaa": {"aggregate": "avg", "clientMetric": + "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '769' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A57Z&ske=2024-11-07T12%3A49%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A22Z&sr=b&sp=r&sig=xVG90pOjmO79sw%2BdUQaJVaes03Z1yvDQGW7RXb5AssU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:22.3932472Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:22.382Z","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 + connection: + - keep-alive + content-length: + - '1614' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:22 GMT + mise-correlation-id: + - b33d9359-b09d-403b-8dab-7c45257a5e30 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055022Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m4n + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/5363de5b-1e9a-499b-9529-041194c8e13b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A22Z&sr=b&sp=r&sig=GQiO%2BU92y6YXJ6BNewIMb5s45hFddzkCEE5KhBMWgSE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:22.6620051Z","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 + connection: + - keep-alive + content-length: + - '568' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:22 GMT + mise-correlation-id: + - 6827fb5f-d517-49ac-a006-8a8c4255b9fa + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055022Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m51 + 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 + Content-Length: + - '0' + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: DELETE + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + connection: + - keep-alive + date: + - Thu, 07 Nov 2024 05:50:23 GMT + mise-correlation-id: + - 576a13d1-d018-4d40-b474-95e5374801e4 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055022Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m5b + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A23Z&sr=b&sp=r&sig=PoUSk7wSsICpg9A%2Fy36AccvOKRy9bSRwrshJe6D4oYE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:23.4853276Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:23 GMT + location: + - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - 48de9dd9-9f70-4374-8a86-04078a163f69 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055023Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m5m + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A23Z&sr=b&sp=r&sig=wxktMWrBYbT702ldT9vgatn9JQwnM4Hwr2zjKoTaLI4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:23.7827548Z","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 + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:23 GMT + mise-correlation-id: + - 83bc58b3-1a9a-4dae-b3b8-f602ec0f6883 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055023Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002m5z + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A29Z&ske=2024-11-07T12%3A50%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A29Z&sr=b&sp=r&sig=wNXEV%2Fxzgya9XdtQXaIwNEMzaBmC9wA9%2BgqDZiamWTo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:29.1061594Z","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 + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:29 GMT + mise-correlation-id: + - 388e6cde-8c87-4efc-a9fb-f989444f8864 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055028Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002ma2 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A34Z&sr=b&sp=r&sig=VDk78SErMpvOxP8MsdgZJntii7m3%2FsRXRtrker5JcgQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:34.3979098Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:34 GMT + mise-correlation-id: + - cd2f0634-68f1-4735-9119-6e1b17a741ac + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055034Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mea + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A29Z&ske=2024-11-07T12%3A50%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A39Z&sr=b&sp=r&sig=0BpL5wsEgpypJXXs0MYD4ozyp7avfkmjcRUH%2FA24%2FOU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:39.6708825Z","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 + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:39 GMT + mise-correlation-id: + - 36b0456d-1a6e-4fba-84fe-398a1330146c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055039Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mme + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A44Z&sr=b&sp=r&sig=kQtjADttIa1AyJiJP%2BFyOwMVkz7yyqmQiJOl5WBEGvs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:44.9448952Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:45 GMT + mise-correlation-id: + - c547d8b7-039c-4605-9a3a-30e514fbfe86 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055044Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mrm + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A50Z&sr=b&sp=r&sig=aeOOcwyd87zVHbb7hQV1UgW8kQ%2BdfsttxfqjjRMRZ%2BY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:50.2352328Z","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 + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:50 GMT + mise-correlation-id: + - 984b56da-be03-4752-ba26-4a24132bbc85 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055050Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002mw6 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A00%3A55Z&sr=b&sp=r&sig=38bnILoGMqFhEf3PtyJ3tfeCYFk8jaWomxQZrezS28E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:00:55.5173208Z","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 + connection: + - keep-alive + content-length: + - '554' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:55 GMT + mise-correlation-id: + - b01f8198-1a62-4396-83c7-3d6dd9d2778b + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055055Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002n19 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A55Z&sr=b&sp=r&sig=cEWBtpD6vMDjAWBgAa3coo5R1AmA4GonXpp%2FfaS3BwE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:55.7969666Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:54.799Z","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 + connection: + - keep-alive + content-length: + - '1614' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:55 GMT + mise-correlation-id: + - d88395e1-db5d-448c-ab48-25fafeb1789d + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055055Z-16998b5679fk5659hC1MAAt7tw00000007b0000000002n1n + 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.11.9 (Windows-10-10.0.26100-SP0) + 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":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:56 GMT + etag: + - '"13011799-0000-0200-0000-672c54c20000"' + 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: 0B2E9A104B2B4B65B9702170D9D710B5 Ref B: MAA201060516019 Ref C: 2024-11-07T05:50:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A50%3A58Z&sr=b&sp=r&sig=imig5ZfXFhhlP5Kd5KwCqKPAP%2BeHKZn%2B2e652s7uKeE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:50:58.6765921Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:54.799Z","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 + connection: + - keep-alive + content-length: + - '1616' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:58 GMT + mise-correlation-id: + - 33a18c5d-f2c5-415d-a425-74480de9450e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055058Z-184f6b5dbd8k5dgkhC1MAAf5kw000000079g000000000p5d + 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.11.9 (Windows-10-10.0.26100-SP0) + 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":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:50:59 GMT + etag: + - '"13011799-0000-0200-0000-672c54c20000"' + 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: 557BA78A5D5A487AB2BBE468A51D1890 Ref B: MAA201060516029 Ref C: 2024-11-07T05:50:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"41daf043-df7c-46b2-a19e-f5801734ddc9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1bad08e4-a0b8-4934-85ff-373b5f1b2a4f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"28f98a17-53e8-4c82-b94b-636fb78f5eaa":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A01Z&sr=b&sp=r&sig=EDwiVqM1mtmTR37b7ApQ06vphS6Maaaqz768ItLECyk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:01.5803577Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-update-vnet-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:50:54.799Z","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 + connection: + - keep-alive + content-length: + - '1612' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:01 GMT + mise-correlation-id: + - 191bd043-0244-437b-a01b-ee078fa5e09c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055101Z-184f6b5dbd8l5czghC1MAA1uz000000005q0000000001898 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"displayName": "CLI-Test", "description": "Test created from az load test + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + true, "subnetId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7zupb5dvcc4wecm4n/providers/Microsoft.Network/virtualNetworks/clitest-load-3uvwrzqrhp2vvymx7/subnets/default", + "environmentVariables": {"rps": 1}, "secrets": {}, "certificate": null, "loadTestConfiguration": + {"engineInstances": 1, "quickStartTest": false}, "passFailCriteria": {"passFailMetrics": + {"41daf043-df7c-46b2-a19e-f5801734ddc9": null, "1bad08e4-a0b8-4934-85ff-373b5f1b2a4f": + null, "28f98a17-53e8-4c82-b94b-636fb78f5eaa": null, "2068b360-cbc7-4333-a38b-6738d6e2c316": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "d19898ab-6ff9-44cf-83a9-41fcbaf8c63b": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "d8da6301-f618-4322-b778-740467dcedbc": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1110' + Content-Type: + - application/merge-patch+json + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: PATCH + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"d8da6301-f618-4322-b778-740467dcedbc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d19898ab-6ff9-44cf-83a9-41fcbaf8c63b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2068b360-cbc7-4333-a38b-6738d6e2c316":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A03Z&sr=b&sp=r&sig=u4wN09kupKxpmGhAlBG1aoqtnQJb%2FHSuDngnF9JN7RM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:03.7042118Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"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":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:03.693Z","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 + connection: + - keep-alive + content-length: + - '1793' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:03 GMT + mise-correlation-id: + - 708e6136-5638-47ad-8296-594259437fa0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055101Z-184f6b5dbd8l5czghC1MAA1uz000000005q000000000189w + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files?api-version=2024-05-01-preview + response: + body: + string: '{"value":[{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/ba791e32-c196-4515-a941-0fe2cb6a6c4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A03Z&sr=b&sp=r&sig=%2FcWpjL8%2Fn3NXx6rhsX3tHWl6vPPS%2Bld7559rdCguE78%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:03.9830029Z","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 + connection: + - keep-alive + content-length: + - '572' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:04 GMT + mise-correlation-id: + - 96058a51-8629-4d0e-8aa4-a7ebf628a4dc + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055103Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018c0 + 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 + Content-Length: + - '0' + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: DELETE + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '' + headers: + api-supported-versions: + - 2022-11-01, 2023-04-01-preview, 2024-03-01-preview, 2024-05-01-preview, 2024-07-01-preview + connection: + - keep-alive + date: + - Thu, 07 Nov 2024 05:51:04 GMT + mise-correlation-id: + - 039c6b75-b4d7-4227-83c8-f47369e9cc6e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055104Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018c7 + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: !!python/object/new:_io.BytesIO + state: !!python/tuple + - !!binary | + PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxqbWV0ZXJUZXN0UGxhbiB2 + ZXJzaW9uPSIxLjIiIHByb3BlcnRpZXM9IjUuMCIgam1ldGVyPSI1LjUiPg0KICA8aGFzaFRyZWU+ + DQogICAgPFRlc3RQbGFuIGd1aWNsYXNzPSJUZXN0UGxhbkd1aSIgdGVzdGNsYXNzPSJUZXN0UGxh + biIgdGVzdG5hbWU9IkF6dXJlIExvYWQgVGVzdGluZyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICA8 + c3RyaW5nUHJvcCBuYW1lPSJUZXN0UGxhbi5jb21tZW50cyI+PC9zdHJpbmdQcm9wPg0KICAgICAg + PGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLmZ1bmN0aW9uYWxfbW9kZSI+ZmFsc2U8L2Jvb2xQcm9w + Pg0KICAgICAgPGJvb2xQcm9wIG5hbWU9IlRlc3RQbGFuLnRlYXJEb3duX29uX3NodXRkb3duIj50 + cnVlPC9ib29sUHJvcD4NCiAgICAgIDxib29sUHJvcCBuYW1lPSJUZXN0UGxhbi5zZXJpYWxpemVf + dGhyZWFkZ3JvdXBzIj5mYWxzZTwvYm9vbFByb3A+DQogICAgICA8ZWxlbWVudFByb3AgbmFtZT0i + VGVzdFBsYW4udXNlcl9kZWZpbmVkX3ZhcmlhYmxlcyIgZWxlbWVudFR5cGU9IkFyZ3VtZW50cyIg + Z3VpY2xhc3M9IkFyZ3VtZW50c1BhbmVsIiB0ZXN0Y2xhc3M9IkFyZ3VtZW50cyIgdGVzdG5hbWU9 + IlVzZXIgRGVmaW5lZCBWYXJpYWJsZXMiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICA8Y29sbGVj + dGlvblByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgPC9lbGVtZW50UHJv + cD4NCiAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IlRlc3RQbGFuLnVzZXJfZGVmaW5lX2NsYXNzcGF0 + aCI+PC9zdHJpbmdQcm9wPg0KICAgIDwvVGVzdFBsYW4+DQogICAgPGhhc2hUcmVlPg0KICAgICAg + PEFyZ3VtZW50cyBndWljbGFzcz0iQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRz + IiB0ZXN0bmFtZT0iVXNlciBEZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAg + ICAgIDxjb2xsZWN0aW9uUHJvcCBuYW1lPSJBcmd1bWVudHMuYXJndW1lbnRzIj4NCiAgICAgICAg + ICA8ZWxlbWVudFByb3AgbmFtZT0iZHVyYXRpb25faW5fc2VjIiBlbGVtZW50VHlwZT0iQXJndW1l + bnQiPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubmFtZSI+ZHVyYXRp + b25faW5fc2VjPC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJn + dW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5nZXRlbnYoJnF1b3Q7ZHVyYXRpb25faW5f + c2VjJnF1b3Q7KSA/OiAmcXVvdDsxMCZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAg + IDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAg + ICAgICAgIDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9InJwcyIg + ZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFy + Z3VtZW50Lm5hbWUiPnJwczwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3JwcyZx + dW90OykgPzogJnF1b3Q7MSZxdW90OyApfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJp + bmdQcm9wIG5hbWU9IkFyZ3VtZW50Lm1ldGFkYXRhIj49PC9zdHJpbmdQcm9wPg0KICAgICAgICAg + IDwvZWxlbWVudFByb3A+DQogICAgICAgICAgPGVsZW1lbnRQcm9wIG5hbWU9ImRvbWFpbiIgZWxl + bWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3Vt + ZW50Lm5hbWUiPmRvbWFpbjwvc3RyaW5nUHJvcD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5h + bWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jvb3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O2RvbWFp + biZxdW90OykgPzogJnF1b3Q7ZXhhbXBsZS5jb20mcXVvdDsgKX08L3N0cmluZ1Byb3A+DQogICAg + ICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5tZXRhZGF0YSI+PTwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICA8L2VsZW1lbnRQcm9wPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1l + PSJwcm90b2NvbCIgZWxlbWVudFR5cGU9IkFyZ3VtZW50Ij4NCiAgICAgICAgICAgIDxzdHJpbmdQ + cm9wIG5hbWU9IkFyZ3VtZW50Lm5hbWUiPnByb3RvY29sPC9zdHJpbmdQcm9wPg0KICAgICAgICAg + ICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQudmFsdWUiPiR7X19ncm9vdnkoIFN5c3RlbS5n + ZXRlbnYoJnF1b3Q7cHJvdG9jb2wmcXVvdDspID86ICZxdW90O2h0dHBzJnF1b3Q7ICl9PC9zdHJp + bmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQubWV0YWRhdGEi + Pj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAgICAgICA8ZWxl + bWVudFByb3AgbmFtZT0idXJsX3BhdGgiIGVsZW1lbnRUeXBlPSJBcmd1bWVudCI+DQogICAgICAg + ICAgICA8c3RyaW5nUHJvcCBuYW1lPSJBcmd1bWVudC5uYW1lIj51cmxfcGF0aDwvc3RyaW5nUHJv + cD4NCiAgICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkFyZ3VtZW50LnZhbHVlIj4ke19fZ3Jv + b3Z5KCBTeXN0ZW0uZ2V0ZW52KCZxdW90O3VybF9wYXRoJnF1b3Q7KSA/OiAmcXVvdDsvJnF1b3Q7 + ICl9PC9zdHJpbmdQcm9wPg0KICAgICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iQXJndW1lbnQu + bWV0YWRhdGEiPj08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPC9lbGVtZW50UHJvcD4NCiAgICAg + ICAgPC9jb2xsZWN0aW9uUHJvcD4NCiAgICAgIDwvQXJndW1lbnRzPg0KICAgICAgPGhhc2hUcmVl + Lz4NCiAgICAgIDxPcGVuTW9kZWxUaHJlYWRHcm91cCBndWljbGFzcz0iT3Blbk1vZGVsVGhyZWFk + R3JvdXBHdWkiIHRlc3RjbGFzcz0iT3Blbk1vZGVsVGhyZWFkR3JvdXAiIHRlc3RuYW1lPSJPcGVu + IE1vZGVsIFRocmVhZCBHcm91cCIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgIDxlbGVtZW50UHJv + cCBuYW1lPSJUaHJlYWRHcm91cC5tYWluX2NvbnRyb2xsZXIiIGVsZW1lbnRUeXBlPSJPcGVuTW9k + ZWxUaHJlYWRHcm91cENvbnRyb2xsZXIiLz4NCiAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iVGhy + ZWFkR3JvdXAub25fc2FtcGxlX2Vycm9yIj5jb250aW51ZTwvc3RyaW5nUHJvcD4NCiAgICAgICAg + PHN0cmluZ1Byb3AgbmFtZT0iT3Blbk1vZGVsVGhyZWFkR3JvdXAuc2NoZWR1bGUiPnJhdGUoJHty + cHN9L3NlYykgcmFuZG9tX2Fycml2YWxzKCR7ZHVyYXRpb25faW5fc2VjfSBzZWMpPC9zdHJpbmdQ + cm9wPg0KICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJPcGVuTW9kZWxUaHJlYWRHcm91cC5yYW5k + b21fc2VlZCI+PC9zdHJpbmdQcm9wPg0KICAgICAgPC9PcGVuTW9kZWxUaHJlYWRHcm91cD4NCiAg + ICAgIDxoYXNoVHJlZT4NCiAgICAgICAgPEhUVFBTYW1wbGVyUHJveHkgZ3VpY2xhc3M9Ikh0dHBU + ZXN0U2FtcGxlR3VpIiB0ZXN0Y2xhc3M9IkhUVFBTYW1wbGVyUHJveHkiIHRlc3RuYW1lPSJIVFRQ + IFJlcXVlc3QiIGVuYWJsZWQ9InRydWUiPg0KICAgICAgICAgIDxlbGVtZW50UHJvcCBuYW1lPSJI + VFRQc2FtcGxlci5Bcmd1bWVudHMiIGVsZW1lbnRUeXBlPSJBcmd1bWVudHMiIGd1aWNsYXNzPSJI + VFRQQXJndW1lbnRzUGFuZWwiIHRlc3RjbGFzcz0iQXJndW1lbnRzIiB0ZXN0bmFtZT0iVXNlciBE + ZWZpbmVkIFZhcmlhYmxlcyIgZW5hYmxlZD0idHJ1ZSI+DQogICAgICAgICAgICA8Y29sbGVjdGlv + blByb3AgbmFtZT0iQXJndW1lbnRzLmFyZ3VtZW50cyIvPg0KICAgICAgICAgIDwvZWxlbWVudFBy + b3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBsZXIuZG9tYWluIj4ke2Rv + bWFpbn08L3N0cmluZ1Byb3A+DQogICAgICAgICAgPHN0cmluZ1Byb3AgbmFtZT0iSFRUUFNhbXBs + ZXIucG9ydCI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBT + YW1wbGVyLnByb3RvY29sIj4ke3Byb3RvY29sfTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3Ry + aW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5jb250ZW50RW5jb2RpbmciPjwvc3RyaW5nUHJvcD4N + CiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5wYXRoIj4ke3VybF9wYXRo + fTwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8c3RyaW5nUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5t + ZXRob2QiPkdFVDwvc3RyaW5nUHJvcD4NCiAgICAgICAgICA8Ym9vbFByb3AgbmFtZT0iSFRUUFNh + bXBsZXIuZm9sbG93X3JlZGlyZWN0cyI+dHJ1ZTwvYm9vbFByb3A+DQogICAgICAgICAgPGJvb2xQ + cm9wIG5hbWU9IkhUVFBTYW1wbGVyLmF1dG9fcmVkaXJlY3RzIj5mYWxzZTwvYm9vbFByb3A+DQog + ICAgICAgICAgPGJvb2xQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnVzZV9rZWVwYWxpdmUiPnRydWU8 + L2Jvb2xQcm9wPg0KICAgICAgICAgIDxib29sUHJvcCBuYW1lPSJIVFRQU2FtcGxlci5ET19NVUxU + SVBBUlRfUE9TVCI+ZmFsc2U8L2Jvb2xQcm9wPg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9 + IkhUVFBTYW1wbGVyLmVtYmVkZGVkX3VybF9yZSI+PC9zdHJpbmdQcm9wPg0KICAgICAgICAgIDxz + dHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLmNvbm5lY3RfdGltZW91dCI+PC9zdHJpbmdQcm9w + Pg0KICAgICAgICAgIDxzdHJpbmdQcm9wIG5hbWU9IkhUVFBTYW1wbGVyLnJlc3BvbnNlX3RpbWVv + dXQiPjwvc3RyaW5nUHJvcD4NCiAgICAgICAgPC9IVFRQU2FtcGxlclByb3h5Pg0KICAgICAgICA8 + aGFzaFRyZWUvPg0KICAgICAgPC9oYXNoVHJlZT4NCiAgICA8L2hhc2hUcmVlPg0KICA8L2hhc2hU + cmVlPg0KPC9qbWV0ZXJUZXN0UGxhbj4NCg== + - 0 + - null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '4870' + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + content-type: + - application/octet-stream + method: PUT + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A04Z&sr=b&sp=r&sig=ZHg0%2BL918h4U5VDGd4jbLwpih7%2BEM%2FldaTHhzjCgDes%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:04.8184717Z","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 + connection: + - keep-alive + content-length: + - '562' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:04 GMT + location: + - https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + mise-correlation-id: + - b6650169-53d8-42ab-a8a3-dc2fc7ae54e3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055104Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018cp + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A51Z&ske=2024-11-07T12%3A49%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A05Z&sr=b&sp=r&sig=M3K6j6X0fukWQJ4a8zPGjN%2B%2Fgh3LR%2BjhN1eN47%2B2LHY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:05.1094514Z","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 + connection: + - keep-alive + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:05 GMT + mise-correlation-id: + - 5c9ead0c-44f6-4689-8164-d3ec2fcab67f + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055104Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018cz + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A10Z&sr=b&sp=r&sig=u2KXyXxtg4LTvb7ivBRYOzOsWap7FrjqklWdOAf5LA8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:10.3985163Z","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 + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:10 GMT + mise-correlation-id: + - 758d98fa-fc56-4656-b344-ecce8407b491 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055110Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018k5 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A15Z&sr=b&sp=r&sig=wab3enWSwBz3KqdxQ6zzroLRVzPC5RtXM%2FFxto2F3Js%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:15.6718923Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:15 GMT + mise-correlation-id: + - 8e79bb05-ee63-48cc-b7aa-862cfac86b16 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055115Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018q0 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A20Z&sr=b&sp=r&sig=hgbQNV9SQbpybVWZuyTvwkspZ4nbyOLNIVlx8JmSnrY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:20.949265Z","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 + connection: + - keep-alive + content-length: + - '555' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:21 GMT + mise-correlation-id: + - 6ae58c33-16eb-479e-86a2-612147eec1e8 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055120Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018tq + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A29Z&ske=2024-11-07T12%3A50%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A26Z&sr=b&sp=r&sig=8SbkidYMQTzIMPpaQMGcO54Co78fC6lTYuyAlXXAU8c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:26.2381527Z","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 + connection: + - keep-alive + content-length: + - '556' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:26 GMT + mise-correlation-id: + - 51cba769-2657-47df-b4db-33932a3a3465 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055126Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000018xh + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A31Z&sr=b&sp=r&sig=YnER2l2Us3QZhrRv50iXZfzr3M3M%2FXbyAA4F9Bb0G5A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:31.5220228Z","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 + connection: + - keep-alive + content-length: + - '558' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:31 GMT + mise-correlation-id: + - cc4959d0-a3ba-455c-afe1-fcc95535276c + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055131Z-184f6b5dbd8l5czghC1MAA1uz000000005q000000000191f + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A49%3A46Z&ske=2024-11-07T21%3A49%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A36Z&sr=b&sp=r&sig=1J7lPngY8b430Rk5QPwJWolLq%2Fo3orQ%2BLD1qGRZwi9A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:36.7993202Z","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 + connection: + - keep-alive + content-length: + - '560' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:36 GMT + mise-correlation-id: + - 0b36fa71-e76b-430d-a74c-c97201d1655e + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055136Z-184f6b5dbd8l5czghC1MAA1uz000000005q0000000001963 + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A07Z&ske=2024-11-07T12%3A50%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A01%3A42Z&sr=b&sp=r&sig=M2VDbAzQh7kz90srOHtwVKj4UEPqT5poXY8RZOC9zhw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:01:42.0816802Z","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 + connection: + - keep-alive + content-length: + - '554' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:42 GMT + mise-correlation-id: + - bc12ff30-a412-4092-ab78-40f447b4ee80 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055141Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000019ad + 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.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"d8da6301-f618-4322-b778-740467dcedbc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d19898ab-6ff9-44cf-83a9-41fcbaf8c63b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2068b360-cbc7-4333-a38b-6738d6e2c316":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A21Z&ske=2024-11-07T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A42Z&sr=b&sp=r&sig=SJjHEj1Lghdg2vHyP%2B9kAV2Hq%2B77c%2BqNI%2BNjCQOd%2Bzw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:42.3801403Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"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":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:37.565Z","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 + connection: + - keep-alive + content-length: + - '1801' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:42 GMT + mise-correlation-id: + - b9d4aa56-1985-49c4-8ad8-a2c164676398 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055142Z-184f6b5dbd8l5czghC1MAA1uz000000005q00000000019bc + 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.11.9 (Windows-10-10.0.26100-SP0) + 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":"2024-11-07T05:48:27.6929785Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:48:27.6929785Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '653' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:43 GMT + etag: + - '"13011799-0000-0200-0000-672c54c20000"' + 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: + - '16498' + x-msedge-ref: + - 'Ref A: F698132FDEDC4F13A31781D496E5A97A Ref B: MAA201060516049 Ref C: 2024-11-07T05:51:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://57063d9f-2cca-41ba-aa01-40c189b64a1b.eastus.cnt-prod.loadtesting.azure.com/tests/create-update-vnet-test-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"d8da6301-f618-4322-b778-740467dcedbc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"},"d19898ab-6ff9-44cf-83a9-41fcbaf8c63b":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2068b360-cbc7-4333-a38b-6738d6e2c316":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"}}},"environmentVariables":{"rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xjqw7scasiibu2o256692d8u.z15.blob.storage.azure.net/2d049d73-d7ee-43f5-aa3b-6a84f7426ca2/f63de16b-443b-4636-9f52-f5967225e345?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A50%3A23Z&ske=2024-11-07T21%3A50%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A51%3A45Z&sr=b&sp=r&sig=xqCDf9xVzE1gcVKGrV%2FmiFa1QOcBBrt%2BNMRMlYe4FsI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:51:45.2871393Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":true,"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":"2024-11-07T05:49:44.277Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:51:37.565Z","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 + connection: + - keep-alive + content-length: + - '1795' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 07 Nov 2024 05:51:45 GMT + mise-correlation-id: + - 68aeea9f-04e9-4661-8506-2c67763545c4 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241107T055144Z-16bf8d9b4c77wrr9hC1BOMmmkw00000007m0000000010sdz + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +version: 1 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 843d91cf50f..be8bc70583b 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:51.2411786Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:51.2411786Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9e7f28c8-9d79-4fbd-b904-34780b2a2913.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":"2024-11-06T09:56:33.7247351Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:56:33.7247351Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:22 GMT + - Wed, 06 Nov 2024 09:57:08 GMT etag: - - '"c5012783-0000-0200-0000-670f52ad0000"' + - '"fa00b305-0000-0200-0000-672b3d690000"' expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 92D3E6653FE547858D71E5AA4D921DBA Ref B: CO6AA3150219025 Ref C: 2024-10-16T05:44:23Z' + - 'Ref A: 4636D29127464D87A8189F0772C67F14 Ref B: MAA201060514037 Ref C: 2024-11-06T09:57:08Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:23 GMT + - Wed, 06 Nov 2024 09:57:10 GMT mise-correlation-id: - - d8ea7c96-e671-467a-9e83-a59e564e9d75 + - 25cc080d-6891-4f56-9618-b6b73a5ae046 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054423Z-18489d46dccggs4rh24eyxmvec00000007wg000000004zsf + - 20241106T095710Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x54x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -105,32 +105,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview response: body: string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:24.4Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:24.4Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:57:11.347Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:11.347Z","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 connection: - keep-alive content-length: - - '569' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:24 GMT + - Wed, 06 Nov 2024 09:57:11 GMT location: - - https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-03-01-preview + - https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-03-01-preview mise-correlation-id: - - dd4663b1-015b-403d-8885-da19c897b8f5 + - 7ebf7724-89ff-4df9-a79b-dda894a25f7d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054424Z-15484bdf4575xp6m65z1ff0ptn000000024g00000000n6xz + - 20241106T095711Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x593 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -148,9 +148,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -166,13 +166,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:24 GMT + - Wed, 06 Nov 2024 09:57:11 GMT mise-correlation-id: - - 46b9aa6e-c3b7-4f24-bdfc-8d525beeb883 + - e8f6e982-1563-4c6b-ace2-8aa900b3800d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054424Z-166cf497cd4xh8zq4d721105qg00000007tg00000000ez9t + - 20241106T095711Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x5cg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -282,33 +282,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T21%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A27Z&sr=b&sp=r&sig=s2h3okGj%2FJatNkgXGRa0GsVQ6Uas5KZpkBJPnTpXxgY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:27.3054122Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A13Z&ske=2024-11-07T01%3A57%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A13Z&sr=b&sp=r&sig=lQLZ9OAopT%2BtztlBYxNamNqI%2B4o10cvJIUSmMAq09mA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:13.5102366Z","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 connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:27 GMT + - Wed, 06 Nov 2024 09:57:13 GMT location: - - https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - aad3ece5-deea-46f3-b64e-35244b5e4634 + - daf7b8cc-302e-47f1-b1e3-fd80479fd2d6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054424Z-15484bdf457slw4lnr1b940h0g00000002w000000000k27q + - 20241106T095712Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x5eq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -326,54 +326,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T12%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A28Z&sr=b&sp=r&sig=lgmYH56WeRp6i88q7CTt5tFfJN4VuNKU3U%2FXSF7UnZg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:28.5495631Z","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 - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:44:28 GMT - mise-correlation-id: - - a2205e1b-6655-44d3-b81c-2024e7a9fb17 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054427Z-166cf497cd4q86sbftw3zaubkw0000000830000000004r8n - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T21%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A33Z&sr=b&sp=r&sig=XOszwN%2Fx%2FdKPDTh0Myd8LDBdRuD5knKfLt1rtHtCXVQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:33.7920938Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A13Z&ske=2024-11-06T16%3A57%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A13Z&sr=b&sp=r&sig=7kC9gI%2F7R60mQ7CQ%2BTio7QMR2Wb4XQWZxWTT2Ll0wD4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:13.8263451Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -386,13 +344,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:33 GMT + - Wed, 06 Nov 2024 09:57:13 GMT mise-correlation-id: - - dde87eb0-d248-4082-b8f6-ad7546994996 + - 4143fb58-495a-42d5-b432-562da7300beb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054433Z-18489d46dccp2df8e3m20gzz8w00000007vg0000000075ze + - 20241106T095713Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x5r6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -410,12 +368,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T12%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A39Z&sr=b&sp=r&sig=7M7PDwmaOas2Q4I6VtgzAEoTXonzqNpdXyMeV%2Blszx8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:39.1370942Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A19Z&ske=2024-11-06T16%3A57%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A20Z&sr=b&sp=r&sig=cukAbJnt393VX889V4qA1L5e1XVY4w%2FVNESf4KTT8jE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:20.4697561Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -428,13 +386,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:39 GMT + - Wed, 06 Nov 2024 09:57:20 GMT mise-correlation-id: - - af4c3268-600a-45f0-8bc0-9eb43dbefc4c + - 121dcb54-3c63-4e33-bc1e-fc54a7b63ee5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054438Z-18489d46dccfp7rz6a82yt7pbw00000007wg000000007vg7 + - 20241106T095718Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x6f7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -452,12 +410,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A44Z&ske=2024-10-16T12%3A44%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A44Z&sr=b&sp=r&sig=vLazbPW5r437PGFqloQ1W6F%2BTSa6RtH6zrqt7lpqidw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:44.3928743Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A25Z&ske=2024-11-06T16%3A57%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A25Z&sr=b&sp=r&sig=AXF7gtSGy0z%2F75b001RkJJCPJY369n%2BtdI70Cek7Qp4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:25.8077842Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -466,17 +424,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:44 GMT + - Wed, 06 Nov 2024 09:57:25 GMT mise-correlation-id: - - 3cd21215-c8e3-480c-a622-b1c6e73861b1 + - 051c0584-dee5-4e83-bd9d-53f27ed72438 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054444Z-18489d46dccfp7rz6a82yt7pbw00000007wg000000007vvc + - 20241106T095725Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x79h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -494,12 +452,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T12%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A49Z&sr=b&sp=r&sig=NeOxWVbbUU9T5zrXHepbKKSXPDfl9fHucYemwgBu85s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:49.7819553Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A13Z&ske=2024-11-07T01%3A57%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A31Z&sr=b&sp=r&sig=kaEEhdl%2BLsLOa0LKbS%2BRIn647vXSQNSXUZ6FjAOiY%2F8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:31.1482211Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -508,17 +466,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:49 GMT + - Wed, 06 Nov 2024 09:57:31 GMT mise-correlation-id: - - df5c0542-800a-4508-be9a-9698fb7ffa3a + - 1bdf5515-5243-4f27-b181-bb63d0682cb2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054449Z-18489d46dcccphr7hbyy83t0cc0000000800000000003n2b + - 20241106T095731Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x81h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -536,12 +494,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A55Z&ske=2024-10-16T12%3A44%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A55Z&sr=b&sp=r&sig=WiHKQ2cYm3avVm2clq9YXEQqHCx9ln9vw%2BWc0aYn9X8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:55.1901593Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A19Z&ske=2024-11-06T16%3A57%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A36Z&sr=b&sp=r&sig=FuogJWKmu5tTYHFvETR2eyV8tlZRxeF6Ga6SusGLQy4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:36.4445418Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -550,17 +508,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:55 GMT + - Wed, 06 Nov 2024 09:57:36 GMT mise-correlation-id: - - 17cfe672-5346-4403-9436-5907f8a1a9bf + - 4a1d3a6f-3c24-4567-95c2-a1e6d6fa0c3b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054454Z-165bfd566cfmx6lk7avu3gk81n00000008kg0000000038m9 + - 20241106T095736Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x8ua x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -578,12 +536,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A44Z&ske=2024-10-16T12%3A44%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A00Z&sr=b&sp=r&sig=X7o0yZdcOuQBmlqunsdswnKcF0JflfWb3sWV0SdOi9I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:00.5133642Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A41Z&ske=2024-11-06T16%3A57%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A41Z&sr=b&sp=r&sig=3ixJ1COtbRCcIl1db7asyl%2F6TbVl81hZpzt%2BHCfQMzQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:41.8379199Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -592,17 +550,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:00 GMT + - Wed, 06 Nov 2024 09:57:41 GMT mise-correlation-id: - - 0e99fdd1-e227-4bb1-a5ee-595fae47daed + - de434177-e511-4407-a376-db2d8dea6a0c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054500Z-165bfd566cfwjg8lbgwdvhqf0g00000009v0000000005rq0 + - 20241106T095741Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001x9ke x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -620,12 +578,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A55Z&ske=2024-10-16T12%3A44%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A05Z&sr=b&sp=r&sig=DRxX9VDQg%2FFsTXPl0Kp1l9LtNVNjgR%2FAjZDd5O1ju6Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:05.9173704Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A41Z&ske=2024-11-06T16%3A57%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A47Z&sr=b&sp=r&sig=Nf4j8QeRkUUKF4JnR3rEsTQHvATKk2Rz95BHggDtSU0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:47.1256974Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -634,17 +592,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:05 GMT + - Wed, 06 Nov 2024 09:57:47 GMT mise-correlation-id: - - 2b66660d-6305-45ac-ad55-cc3398bc2c9d + - b20f9df5-366c-4d56-84cd-a7a5a1aee974 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054505Z-15484bdf457slw4lnr1b940h0g00000002v000000000n7bf + - 20241106T095746Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001xabx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -662,13 +620,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests/create-with-args-test-case?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A44Z&ske=2024-10-16T12%3A44%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A06Z&sr=b&sp=r&sig=7sPnKgrSkFMDW%2Ba2gWHXdPZ9I27yx2%2Bbdbn28wHHLec%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:06.8841337Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:24.4Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:02.529Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A47Z&ske=2024-11-06T16%3A57%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A47Z&sr=b&sp=r&sig=wXGGi1QKVcSCJ1DhGyneoBIvGbkMQY1vfglnZE66Aqg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:47.4700661Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:57:11.347Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:43.322Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -677,17 +635,17 @@ interactions: connection: - keep-alive content-length: - - '1151' + - '1143' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:06 GMT + - Wed, 06 Nov 2024 09:57:47 GMT mise-correlation-id: - - 9169bb2b-0acd-49db-b399-6b6daa73fa3a + - 160bf85b-8d2c-4c53-9064-8b3c5136d304 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054506Z-166cf497cd4t2mlmt579burh88000000071g000000001rh0 + - 20241106T095747Z-16bf8d9b4c7xpfn6hC1BOMh41000000006dg00000001xadu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -705,23 +663,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:51.2411786Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:51.2411786Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9e7f28c8-9d79-4fbd-b904-34780b2a2913.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":"2024-11-06T09:56:33.7247351Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:56:33.7247351Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:07 GMT + - Wed, 06 Nov 2024 09:57:50 GMT etag: - - '"c5012783-0000-0200-0000-670f52ad0000"' + - '"fa00b305-0000-0200-0000-672b3d690000"' expires: - '-1' pragma: @@ -737,7 +695,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 724C9EFF34BD4F488586621277447055 Ref B: CO6AA3150217049 Ref C: 2024-10-16T05:45:07Z' + - 'Ref A: 6B0C513851BB49C3A53B7A4B74391670 Ref B: MAA201060513035 Ref C: 2024-11-06T09:57:50Z' status: code: 200 message: OK @@ -751,13 +709,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://9e7f28c8-9d79-4fbd-b904-34780b2a2913.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://15d650dc-6827-40c3-b773-8174869e9423.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jwux8rvd9t25nw7q508jvoxe.z19.blob.storage.azure.net/35ab5124-9979-429c-8882-727cd4ce9663/46682634-8f6d-45ce-b5ff-e40505b3e088?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A02Z&ske=2024-10-16T19%3A45%3A02Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=mdQjUyd9A0hwSYdPxiM%2FLtcQA516xPA4Lo74xevc%2FWA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:07.911157Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:24.4Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:02.529Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://xrbyefffx6kpi1ads5g7a7af.z14.blob.storage.azure.net/4bda5434-0938-44fb-b4fb-3af070a20c0d/75031341-2325-4321-94fe-689de7b31fd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A57%3A47Z&ske=2024-11-06T16%3A57%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A53Z&sr=b&sp=r&sig=CWh0ENKe24Ngzi2sphtAHESqmhmrBfq%2BSoI7suadvJA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:53.7084229Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"create-with-args-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:57:11.347Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:43.322Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -766,17 +724,17 @@ interactions: connection: - keep-alive content-length: - - '1162' + - '1157' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:07 GMT + - Wed, 06 Nov 2024 09:57:53 GMT mise-correlation-id: - - 74c557b7-4327-45b6-a546-4694748d9502 + - 077929aa-1000-4693-be86-1f71b20f732d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054507Z-166cf497cd4r6hmp97992txd7w00000007x000000000em09 + - 20241106T095753Z-16bf8d9b4c77wrr9hC1BOMmmkw000000069000000001f5x8 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 6408e0c4f5d..daf5f0c887f 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3304641Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3304641Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c52951ec-24dd-45a9-b36c-073dde5bb180.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":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:07 GMT + - Wed, 06 Nov 2024 09:53:59 GMT etag: - - '"c5011c73-0000-0200-0000-670f51760000"' + - '"f9008cfe-0000-0200-0000-672b3ca90000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 88BD29AE13294981928932F63A5CA7A1 Ref B: CO6AA3150218009 Ref C: 2024-10-16T05:39:07Z' + - 'Ref A: 916E0E6475504978B2B1EF98565C538F Ref B: MAA201060514053 Ref C: 2024-11-06T09:53:59Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:39:09 GMT + - Wed, 06 Nov 2024 09:54:02 GMT mise-correlation-id: - - c88d2ead-d443-4855-937c-7397ddf6c644 + - ec6ed226-78f9-4d32-9fd4-017f934f8820 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T053909Z-18489d46dcc6jcdlqqc3agq27c00000007v000000000p31e + - 20241106T095402Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpq7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"c9f0f518-50d0-4c31-bfb4-c18eae26f8da": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "ac1d6cc4-f78b-4eaa-9e09-91331aae78aa": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "8375125c-e922-4bbf-b118-42c5ee009a56": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"d824664b-f1cd-4629-ae6f-0b62ab64ca50": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "77acd211-b356-4b68-9608-84bd060be92e": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "66fd1039-a79e-45cb-9dd5-bc1744487600": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c9f0f518-50d0-4c31-bfb4-c18eae26f8da":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ac1d6cc4-f78b-4eaa-9e09-91331aae78aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8375125c-e922-4bbf-b118-42c5ee009a56":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.242Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:39:10.242Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d824664b-f1cd-4629-ae6f-0b62ab64ca50":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"77acd211-b356-4b68-9608-84bd060be92e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"66fd1039-a79e-45cb-9dd5-bc1744487600":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:03.27Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:54:03.27Z","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 connection: - keep-alive content-length: - - '1052' + - '1044' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:10 GMT + - Wed, 06 Nov 2024 09:54:03 GMT location: - - https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview + - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview mise-correlation-id: - - f70fc535-60f9-440f-bf8f-16d40ac50bce + - 9910265a-5103-40a4-a200-4286934f83b7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053909Z-18489d46dcccphr7hbyy83t0cc000000080g000000002d5d + - 20241106T095402Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpqv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:10 GMT + - Wed, 06 Nov 2024 09:54:03 GMT mise-correlation-id: - - 6587da2b-2ae0-4a91-b1e3-73b2745d20dc + - 27ea5ff0-8a62-44db-90c2-760fc9d2d751 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053910Z-15484bdf457jvkjnektp2rx17000000002q000000000nb3q + - 20241106T095403Z-16998b5679frmpjghC1MAAsv7000000005x000000000hprc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,14 +203,14 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/4b6b439e-f619-470f-8c74-2c28050cf0f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=2cYgmzD9vn2WqQYg%2Fb%2F0swl7lc0%2F5Ipzgu5TxOou0KY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.1857384Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A04Z&sr=b&sp=r&sig=FedRg4VsP9oGO0%2BYg%2BIG6L3n%2FwHPD2K6yiRePOoSFvM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:04.2994008Z","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 @@ -220,15 +221,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 09:54:04 GMT location: - - https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 770d4a12-b236-4676-b889-447955cba5a0 + - 29b066b7-bc3d-43c9-b16d-4c610f5e9aca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053910Z-166cf497cd45mnb2hc29k63vhc00000007v0000000002vk2 + - 20241106T095403Z-16998b5679frmpjghC1MAAsv7000000005x000000000hprx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/4b6b439e-f619-470f-8c74-2c28050cf0f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=2cYgmzD9vn2WqQYg%2Fb%2F0swl7lc0%2F5Ipzgu5TxOou0KY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.6199834Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A04Z&sr=b&sp=r&sig=FedRg4VsP9oGO0%2BYg%2BIG6L3n%2FwHPD2K6yiRePOoSFvM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:04.6592953Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -264,13 +265,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 09:54:04 GMT mise-correlation-id: - - 025ade8d-5989-4a14-a441-088ec0b80b60 + - c7626959-f7dc-4067-8409-2bad0ab5740d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053911Z-15484bdf45792m2k6spfmpcgcc00000002h000000000mfh2 + - 20241106T095404Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpsh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A12Z&sr=b&sp=r&sig=pCSel7ST%2FNBItA90FohvY1RQcSiRBBmN5KqrTvViTc8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:12.0950539Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-07T01%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A07Z&sr=b&sp=r&sig=2Rt5TJlhpMzZv7PLz7UPMezWU6Biv8d9UIpCqVD8fT8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:07.1121105Z","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 connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:12 GMT + - Wed, 06 Nov 2024 09:54:07 GMT location: - - https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 3d970e99-41d9-4c0f-bf84-50f2c186ecc1 + - 21325f42-e1dc-418d-8959-11fa030c1966 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053911Z-18489d46dccgwx6cyqev009zy000000007q000000000g8x5 + - 20241106T095404Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpt2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A12Z&sr=b&sp=r&sig=XbyZ8%2FNPGMh0ol8Y63QYu%2Fm4NCo9CXocGHtrEuKzH38%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:12.5292958Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A07Z&sr=b&sp=r&sig=NIo7avXPXJ%2FPH%2Fpni%2Bx%2FfWroCa48nuFgCRp754sYAEw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:07.4408044Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:12 GMT + - Wed, 06 Nov 2024 09:54:07 GMT mise-correlation-id: - - ed57cc18-9f86-4403-a2ed-ca7d9ecdc14b + - 81aec0a7-6914-484d-8eeb-46a074973cf7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053912Z-18489d46dccfkdmbtzwpeeg8f800000007x000000000nfbz + - 20241106T095407Z-16998b5679frmpjghC1MAAsv7000000005x000000000hpv6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A17Z&ske=2024-10-16T12%3A39%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A18Z&sr=b&sp=r&sig=xgLiiR8Osm3sZNa5rlMrBFp3u56cCJKnb%2F4w3xYqAf8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:18.5900994Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A12Z&sr=b&sp=r&sig=MhBWQDWENflhPWxVa%2Bp6aDwc8HW5JX5s6rgTr3tzrNg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:12.800852Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:18 GMT + - Wed, 06 Nov 2024 09:54:12 GMT mise-correlation-id: - - 8527eaad-e0f2-434b-a5ac-3ed48c5d67fe + - a73bfc2f-510c-4b85-89b4-0fa6ec29069c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053917Z-18489d46dcc2nx5gu4q8t6hd2g00000007wg000000003du3 + - 20241106T095412Z-16998b5679frmpjghC1MAAsv7000000005x000000000hq02 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A23Z&sr=b&sp=r&sig=WDOOqFE42mTuEgOr8zDZBVRpG8J0JI6tqvyh1MHy0Rs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:23.8984659Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A18Z&ske=2024-11-06T16%3A54%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A18Z&sr=b&sp=r&sig=cq%2FGKv6UwscmdahQa1O%2F%2FVqM1b1vFXcYuTjOGSFodho%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:18.1743071Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:23 GMT + - Wed, 06 Nov 2024 09:54:18 GMT mise-correlation-id: - - 2ce5f180-1752-4d6b-a557-f9ff0ec7277d + - 4dadbd0a-fc81-412a-946c-3492ffa06af9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053923Z-17f5d849667w6jv7rkqk450w7c00000001w0000000002kxk + - 20241106T095417Z-16998b5679frmpjghC1MAAsv7000000005x000000000hq5c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A29Z&ske=2024-10-16T12%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A29Z&sr=b&sp=r&sig=IyP96THtdTV%2BCnj7B1VEgbtUYZ8Hnl4eNf1tiYGXWxc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:29.2823747Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A23Z&sr=b&sp=r&sig=me6LZ3b4M6cOHPLACVf%2Bhxqcdia6n1h9LwXBU6mPpVA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:23.4573728Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -487,13 +488,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:29 GMT + - Wed, 06 Nov 2024 09:54:23 GMT mise-correlation-id: - - a8276370-a87c-4790-a2e8-b1328a5ef6d8 + - 14ec1b5b-9b6c-4ebd-9d10-97c78e6e30e8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053929Z-165bfd566cffhs2674zxz6xayc00000009800000000004c4 + - 20241106T095423Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqb2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T12%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A34Z&sr=b&sp=r&sig=GnZJy69AgTwGHxbOC3uOgu7%2BYVFI4wszlm4BBy7Zjro%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:34.6795117Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A18Z&ske=2024-11-06T16%3A54%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A28Z&sr=b&sp=r&sig=kV7YDBXo%2BSsq9EW4xPihMAAhw635RGRnbnxcJ%2BEJSeg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:28.7823599Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:34 GMT + - Wed, 06 Nov 2024 09:54:28 GMT mise-correlation-id: - - bfe44afc-c9c5-4574-a90f-6f44e8e1dee0 + - 36a4f31e-136b-492f-825c-3d67fc489d93 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053934Z-17f5d8496672vwgf4k1huv853400000006zg000000001w8b + - 20241106T095428Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqgu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A39Z&sr=b&sp=r&sig=LyLmu0ieXkSgYJC2Qix%2Bp716dIRWBeegYAQizs3sNQE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:39.9608883Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-07T01%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A34Z&sr=b&sp=r&sig=hNLdZw8C1jB3vtfHIaibpWuJlYvn%2Ftc6MEhmsSDgf0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:34.0694586Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -571,13 +572,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:39 GMT + - Wed, 06 Nov 2024 09:54:34 GMT mise-correlation-id: - - 533c9d15-0132-47cc-ac13-5a00809cb90a + - 5a3ea50b-73c9-4662-ab0b-4c213ee5d000 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053939Z-17f5d849667t9hx53vqernxx580000000890000000004bxz + - 20241106T095433Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqqy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A40Z&ske=2024-10-16T21%3A39%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A40Z&sr=b&sp=r&sig=HxyZqr%2BO08cAAkQawZB5fEOIO7%2BzARzEqShSUQZl4ak%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:40.4617663Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A34Z&ske=2024-11-07T01%3A54%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A34Z&sr=b&sp=r&sig=U44V8A5P8%2F2vRToiaRYKunUQG2aAIMFUzQ8ua4uzKxA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:34.6688386Z","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 connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:40 GMT + - Wed, 06 Nov 2024 09:54:34 GMT location: - - https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - bfc8618b-2e1c-4676-a1fd-c0841a55c904 + - 9adf9bd6-66a5-4f92-a5a3-2c7d1f6fd02d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053940Z-165bfd566cfznrf9x5qx3qhqn800000009eg000000000ws7 + - 20241106T095434Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqre x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A34Z&ske=2024-10-16T12%3A39%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A40Z&sr=b&sp=r&sig=9KkshqjXXLeBzTfNOXFrwmsx3c42ujevW0JExNkKykg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:40.8058162Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-07T01%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A34Z&sr=b&sp=r&sig=eo5PX2W5AaKgmTR4pC4rMc8XsxmLOQEkDAYoG5tsypE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:34.9527129Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -749,55 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:40 GMT - mise-correlation-id: - - 5294fdba-92f7-4ec1-8f4a-4c512417bba7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053940Z-165bfd566cfr4rxnv6rawx61b000000007s0000000008q6h - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A17Z&ske=2024-10-16T12%3A39%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A45Z&sr=b&sp=r&sig=nPlksgc3pE8H9hL%2FfOkqER%2FqCcAcl1ihHFK1%2FIAZ2YE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:45.9447001Z","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 - connection: - - keep-alive - content-length: - - '562' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:45 GMT + - Wed, 06 Nov 2024 09:54:35 GMT mise-correlation-id: - - fa3decfc-261c-46a7-ba14-f660a500795f + - 3e84cbe4-e8ef-4b02-80fd-de50ef73f441 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053945Z-165bfd566cfmx6lk7avu3gk81n00000008g0000000007tq8 + - 20241106T095434Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqrz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A40Z&ske=2024-10-16T21%3A39%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A51Z&sr=b&sp=r&sig=AaJ90Vzh854yvrxlnWYEZJ%2BfVNveuRUdSjls4Iy0UJE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:51.2065287Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A34Z&ske=2024-11-07T01%3A54%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A40Z&sr=b&sp=r&sig=qmrxYEvioTbyH%2BEf050z7Yv43oeMcJPBRqxnTIDjUC0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:40.3411382Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -833,13 +792,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:51 GMT + - Wed, 06 Nov 2024 09:54:40 GMT mise-correlation-id: - - 191f6ecb-914e-489c-9ec1-1b211f7fd3a3 + - d8f2ae53-0164-44ed-8b8f-5a7b71ff17d5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053951Z-165bfd566cffhs2674zxz6xayc00000009500000000055ce + - 20241106T095440Z-16998b5679frmpjghC1MAAsv7000000005x000000000hqxc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A17Z&ske=2024-10-16T12%3A39%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A56Z&sr=b&sp=r&sig=qomWIhXvEBveBP0JTAi45PaHjALPj2ZIIvqtfa2ZFP4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:56.4839532Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A45Z&sr=b&sp=r&sig=NJY%2BEA6LobLSQrMpeKy7NwLTbOc1u0I6KXXgsX4drHg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:45.6664697Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:56 GMT + - Wed, 06 Nov 2024 09:54:45 GMT mise-correlation-id: - - 13b90814-ee9f-4795-9cca-aac2930f9b52 + - 1227f947-3a6d-4076-a995-99fa3a954af9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053956Z-165bfd566cf626cbrvmzsprhfs00000006y000000000ckry + - 20241106T095445Z-16998b5679frmpjghC1MAAsv7000000005x000000000hr2n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A29Z&ske=2024-10-16T12%3A39%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A02Z&sr=b&sp=r&sig=nn%2Flzx%2F7bNeFsa1c8I0rh8DspIYNnd5t2rAebo3%2BmOw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:02.4063222Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A34Z&ske=2024-11-07T01%3A54%3A34Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A50Z&sr=b&sp=r&sig=OahNIx40bo%2FDEc40zaYvLwmvioHmzS8%2Bfypy6MvCM3U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:50.9544733Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:02 GMT + - Wed, 06 Nov 2024 09:54:51 GMT mise-correlation-id: - - 731dd41a-4f12-461e-9fc7-fcc0ca73b0c2 + - a6a15197-4d52-4768-99e3-aa9820645a8a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054001Z-165bfd566cfz6tr4stm33d094000000005m0000000006pcy + - 20241106T095450Z-16998b5679frmpjghC1MAAsv7000000005x000000000hr7z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A07Z&sr=b&sp=r&sig=sJGvNQwv2n7piqNu6hcsaUy3L7xJTg6VA8HuqkUslCA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:07.7038326Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A56Z&sr=b&sp=r&sig=onNjphrqaXJzYtIfXyyPIS5Xqlry2s1IACbXBA08ytQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:56.5974799Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -959,13 +918,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:07 GMT + - Wed, 06 Nov 2024 09:54:56 GMT mise-correlation-id: - - 8380ba50-4f93-4dbd-bbba-6027af8693e7 + - 61cc0403-cc65-4e9f-8038-38230b9de85d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054007Z-165bfd566cfch4x7fkdr4vg1mn000000085000000000ae6h + - 20241106T095456Z-16998b5679frmpjghC1MAAsv7000000005x000000000hrds x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A40Z&ske=2024-10-16T21%3A39%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A12Z&sr=b&sp=r&sig=dP%2BQIBrqsnUMvJH%2B3ZOzVOTuWDDD9LNFItFKgiHr4so%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:12.9999558Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A02Z&sr=b&sp=r&sig=knZ2CNUxfJvqyf0ZeFZ1QptqzV0ptEGvXI7yKocy1ms%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:02.1634382Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:12 GMT + - Wed, 06 Nov 2024 09:55:02 GMT mise-correlation-id: - - 91246e1b-90f4-4d7f-9fb2-b2ca64b016e9 + - 35ef8fed-6075-4d05-b947-d92962f63cfa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054012Z-17f5d849667h7djshftd289dx000000007s000000000ep8n + - 20241106T095501Z-16998b5679frmpjghC1MAAsv7000000005x000000000hrnk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A18Z&sr=b&sp=r&sig=59WkaMyDYVdnNubqCgqXoUSyIjU3V2F6hQSLzZRbbrI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:18.3090664Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A07Z&sr=b&sp=r&sig=Ox8pS7fmeRKrcgOnvhw%2BiMW%2FykMMjp2XaBkvtw5S50Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:07.4929064Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1039,17 +998,17 @@ interactions: connection: - keep-alive content-length: - - '554' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:18 GMT + - Wed, 06 Nov 2024 09:55:07 GMT mise-correlation-id: - - d119cb30-a07d-4bc2-b61c-fe4b249ceebc + - dcbff234-3d36-4b7a-bb69-26ad64f3f096 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054018Z-165bfd566cftt5pk5sesfc5t6w00000005y0000000007rt8 + - 20241106T095507Z-16998b5679frmpjghC1MAAsv7000000005x000000000hruz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,13 +1026,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"c9f0f518-50d0-4c31-bfb4-c18eae26f8da":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ac1d6cc4-f78b-4eaa-9e09-91331aae78aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8375125c-e922-4bbf-b118-42c5ee009a56":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A18Z&sr=b&sp=r&sig=iL8gABVEznNu0ZHdn7dd3VDszW0ld9nkUxUi5EqMHOk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:18.5999241Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/4b6b439e-f619-470f-8c74-2c28050cf0f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A18Z&sr=b&sp=r&sig=3eR3TSRCJAQjNiIfMP9DEeQYLoRn9AMimul0ddF%2Byd0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:18.6004538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A18Z&sr=b&sp=r&sig=o%2FAspt4r1nGSvLH6%2BO8rj1hMuBiG59DDcMdWVZH8bCY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:18.6005668Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.242Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:16.311Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d824664b-f1cd-4629-ae6f-0b62ab64ca50":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"77acd211-b356-4b68-9608-84bd060be92e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"66fd1039-a79e-45cb-9dd5-bc1744487600":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A07Z&sr=b&sp=r&sig=HqZSW7Uf%2BZyvM1OcYz4RpslmfD%2BxOL924wbog3N6tjk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:07.8006119Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A07Z&sr=b&sp=r&sig=tEgsLaofYqG2F245sRAKEUTR0Nsee74ioKCoPEhLXc8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:07.8011427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A07Z&ske=2024-11-06T16%3A54%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A07Z&sr=b&sp=r&sig=wKlBt05JI11vn%2BW%2BhVbxWjd45HhDKHwvpfDbaFQxzto%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:07.8012671Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:03.27Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:03.055Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1082,17 +1041,17 @@ interactions: connection: - keep-alive content-length: - - '2772' + - '2767' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:18 GMT + - Wed, 06 Nov 2024 09:55:07 GMT mise-correlation-id: - - 37e18a94-5a2a-43ea-978e-defd963e03ba + - 2e2caa56-9806-495b-8ed4-fa2543336ff2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054018Z-17f5d849667wqxpvdmyq50u9dc00000006yg00000000bwbe + - 20241106T095507Z-16998b5679frmpjghC1MAAsv7000000005x000000000hrve x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1110,23 +1069,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3304641Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3304641Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c52951ec-24dd-45a9-b36c-073dde5bb180.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":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:19 GMT + - Wed, 06 Nov 2024 09:55:09 GMT etag: - - '"c5011c73-0000-0200-0000-670f51760000"' + - '"f9008cfe-0000-0200-0000-672b3ca90000"' expires: - '-1' pragma: @@ -1142,7 +1101,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1D4E3DA2797A45C68C6466009C13C3FA Ref B: CO6AA3150218029 Ref C: 2024-10-16T05:40:18Z' + - 'Ref A: 2D39225F1215438F9DBCD197099B59D6 Ref B: MAA201060514051 Ref C: 2024-11-06T09:55:09Z' status: code: 200 message: OK @@ -1156,13 +1115,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"c9f0f518-50d0-4c31-bfb4-c18eae26f8da":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ac1d6cc4-f78b-4eaa-9e09-91331aae78aa":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"8375125c-e922-4bbf-b118-42c5ee009a56":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/035a0b10-5359-4ca1-9b4f-b17d05337fbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A19Z&sr=b&sp=r&sig=LcBjE4th6IiBya1ZgSEKnK03Xv8UGLMAalveDlRLy%2Bk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:19.4689233Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/4b6b439e-f619-470f-8c74-2c28050cf0f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A19Z&sr=b&sp=r&sig=sCRT1XqkdvnqLwOJ%2F8qJtmE9I1triJBzpSiTHXUMG80%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:19.4693289Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://erzuues5rxbwugm7sd5tktjc.z12.blob.storage.azure.net/fc400641-87b8-4198-947e-65cd69c489bb/db4d32bd-d8f6-484b-8e28-196713a4fea7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A19Z&sr=b&sp=r&sig=P%2Fc3ZSOVxl7Df%2F99zrS5bly3ZPvODbFSf%2FIDem9EmEA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:19.469507Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.242Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:16.311Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d824664b-f1cd-4629-ae6f-0b62ab64ca50":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"77acd211-b356-4b68-9608-84bd060be92e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"66fd1039-a79e-45cb-9dd5-bc1744487600":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/7e050f4f-e63b-41bf-b745-bc2c4134541c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A12Z&sr=b&sp=r&sig=VtrP2%2FeiUZC4jy5ZKZBX6s%2BYvBSDgM5zm3KrGENCzSY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:12.5821375Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/22bd1952-fae9-4cf8-857f-143930c49a58?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A12Z&sr=b&sp=r&sig=pUx6LDFN1cex8BtRWnQtjRKp%2BkZF53havXrusY7K9pA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:12.5824034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://snqk9ujzm50fwznrzp00uy7e.z19.blob.storage.azure.net/80d444ea-d2d1-405b-a5ae-7afb07511180/4c27ed4b-2e14-4cf4-af27-10c48834b350?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A04Z&ske=2024-11-06T16%3A54%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A12Z&sr=b&sp=r&sig=%2F5z3tY6BJhDE82XUYjebs0c%2BTzVp2qrQnHLrvQ%2BMhec%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:12.5824937Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:03.27Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:03.055Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1171,17 +1130,17 @@ interactions: connection: - keep-alive content-length: - - '2787' + - '2783' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:19 GMT + - Wed, 06 Nov 2024 09:55:12 GMT mise-correlation-id: - - 13241242-cac8-43a9-8ca9-e119ac753b8d + - a69852c5-263e-4669-9d29-d8e67cd4b717 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054019Z-17f5d849667qmr9byegk96121000000009e00000000043xm + - 20241106T095512Z-16998b5679frmpjghC1MAAsv7000000005yg00000000ch2t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,23 +1158,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3304641Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3304641Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c52951ec-24dd-45a9-b36c-073dde5bb180.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":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:33 GMT + - Wed, 06 Nov 2024 09:55:14 GMT etag: - - '"c5011c73-0000-0200-0000-670f51760000"' + - '"f9008cfe-0000-0200-0000-672b3ca90000"' expires: - '-1' pragma: @@ -1231,7 +1190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 10E17984EDA44DE0B993A4A77B726801 Ref B: CO6AA3150220025 Ref C: 2024-10-16T05:40:19Z' + - 'Ref A: B874BF8F95974642824DADF7D6DE48DE Ref B: MAA201060516031 Ref C: 2024-11-06T09:55:14Z' status: code: 200 message: OK @@ -1247,9 +1206,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: string: '' @@ -1259,13 +1218,13 @@ interactions: connection: - keep-alive date: - - Wed, 16 Oct 2024 05:40:33 GMT + - Wed, 06 Nov 2024 09:55:17 GMT mise-correlation-id: - - f9804084-fe28-4c81-8c04-6f32f4815fa7 + - 45eaa08d-0a15-4aae-aeec-f9af1ed401e8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054033Z-18489d46dccj85r8e2f8g29m280000000820000000005yhv + - 20241106T095516Z-16998b5679fgq548hC1MAAaz340000000610000000007cwa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1283,23 +1242,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3304641Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3304641Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c52951ec-24dd-45a9-b36c-073dde5bb180.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":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:33 GMT + - Wed, 06 Nov 2024 09:55:18 GMT etag: - - '"c5011c73-0000-0200-0000-670f51760000"' + - '"f9008cfe-0000-0200-0000-672b3ca90000"' expires: - '-1' pragma: @@ -1315,7 +1274,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6D492B32CF2B4927BFDED66F4F3752A4 Ref B: CO6AA3150217031 Ref C: 2024-10-16T05:40:34Z' + - 'Ref A: 61C2156B689943D2B01BC84F1ABF210A Ref B: MAA201060514021 Ref C: 2024-11-06T09:55:19Z' status: code: 200 message: OK @@ -1329,9 +1288,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -1347,13 +1306,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:34 GMT + - Wed, 06 Nov 2024 09:55:24 GMT mise-correlation-id: - - 909de056-7aeb-4034-aefc-9306d1d157dc + - 9a51e7ee-28a6-49ff-845c-43959113ea8f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054034Z-18489d46dccggs4rh24eyxmvec00000007r000000000m0vf + - 20241106T095520Z-184f6b5dbd852mkvhC1MAA575g000000062000000000471f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1371,23 +1330,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3304641Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3304641Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c52951ec-24dd-45a9-b36c-073dde5bb180.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":"2024-11-06T09:53:22.3704788Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.3704788Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:35 GMT + - Wed, 06 Nov 2024 09:55:26 GMT etag: - - '"c5011c73-0000-0200-0000-670f51760000"' + - '"f9008cfe-0000-0200-0000-672b3ca90000"' expires: - '-1' pragma: @@ -1403,7 +1362,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 588FD0FDB01847689829858811192ECE Ref B: CO6AA3150219017 Ref C: 2024-10-16T05:40:35Z' + - 'Ref A: 84F6FE75E1454109A1C2BB0AB9806A91 Ref B: MAA201060514023 Ref C: 2024-11-06T09:55:25Z' status: code: 200 message: OK @@ -1417,9 +1376,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c52951ec-24dd-45a9-b36c-073dde5bb180.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://2cf84373-6c74-4513-b096-270804f6bbde.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -1435,13 +1394,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:35 GMT + - Wed, 06 Nov 2024 09:55:28 GMT mise-correlation-id: - - dcf4b62c-76ca-421c-98c2-29ed978eb798 + - f870bba7-7d22-49b4-876e-0adf80f9790f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054035Z-166cf497cd4jqnrcydhdctbvm400000007pg00000000gq2k + - 20241106T095527Z-184f6b5dbd8wqhb5hC1MAAgerw00000004xg00000000hdep 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 a8ff665b195..5ac74298da9 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:41.52259Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:41.52259Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2aab5add-874d-4340-8011-1f5149dccfb1.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":"2024-11-06T09:55:44.961123Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:55:44.961123Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '655' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:12 GMT + - Wed, 06 Nov 2024 09:56:19 GMT etag: - - '"c5010879-0000-0200-0000-670f51f00000"' + - '"fa002d04-0000-0200-0000-672b3d390000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1B0C96890D8F4C67B82A606F4D75AA89 Ref B: CO6AA3150218021 Ref C: 2024-10-16T05:41:13Z' + - 'Ref A: 4CAF4CFE3FB04136B0E2B66598661096 Ref B: MAA201060514033 Ref C: 2024-11-06T09:56:19Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:41:13 GMT + - Wed, 06 Nov 2024 09:56:22 GMT mise-correlation-id: - - fc986b34-79b8-4274-8ca1-5f3e468582e9 + - 18aecf09-4d7f-4b63-b089-812f027583db strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054113Z-18489d46dcc7qds9rw9wr310dc0000000670000000001146 + - 20241106T095621Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6w0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"df6f3d90-e710-4641-a410-badccf1595d9": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "01369441-98ab-4530-a8b3-3b941a8174f6": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "fc1fd026-261d-49ce-90dc-1abd92098f74": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"652f7728-3b5b-4e16-af78-b8cb9db0616c": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "121a1ec9-c034-4383-9844-8b182c4b23f6": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "5bc70a70-86bd-48c8-9b74-9eaf8649a2fb": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"df6f3d90-e710-4641-a410-badccf1595d9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01369441-98ab-4530-a8b3-3b941a8174f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fc1fd026-261d-49ce-90dc-1abd92098f74":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:14.365Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:14.365Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"652f7728-3b5b-4e16-af78-b8cb9db0616c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"121a1ec9-c034-4383-9844-8b182c4b23f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc70a70-86bd-48c8-9b74-9eaf8649a2fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:56:22.705Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:56:22.705Z","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 connection: - keep-alive content-length: - - '1054' + - '1048' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:14 GMT + - Wed, 06 Nov 2024 09:56:22 GMT location: - - https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview + - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview mise-correlation-id: - - bee5b49a-d12c-4ac7-bdb9-6860670f52c3 + - ca7a810c-c51d-4a8f-ba8d-a7e900edd853 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054114Z-18489d46dccp2df8e3m20gzz8w00000007wg000000004ttr + - 20241106T095622Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6wr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:14 GMT + - Wed, 06 Nov 2024 09:56:23 GMT mise-correlation-id: - - d263f612-5fb3-4b8a-834f-e998b69aa79a + - 1282f4cb-f360-4cd2-bceb-1fc6aa3a3987 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054114Z-15484bdf457kqcw7c4rchthr0n00000002mg00000000ap0y + - 20241106T095623Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6x9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/bc8ac767-f01e-473d-bf41-6514c16ed4b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A15Z&sr=b&sp=r&sig=Qoqn%2B5ajLPDHZmlFSya5KBTSr%2Bo2FhIX2%2B5cEqzwK3U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:51:15.4020251Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A23Z&ske=2024-11-06T16%3A56%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A23Z&sr=b&sp=r&sig=uEA%2BEuLR%2BK0de13jeJtCM27UIp5bWhU%2BMIPMFB39y%2FE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:06:23.7971536Z","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 connection: - keep-alive content-length: - - '577' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:15 GMT + - Wed, 06 Nov 2024 09:56:23 GMT location: - - https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - b100afcf-a642-4884-9507-6b29d1734dd1 + - 65609433-6a8f-4736-af59-e3541bf9612a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054114Z-166cf497cd4dfx7788bvx3ssu800000007ug0000000044d8 + - 20241106T095623Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6xe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/bc8ac767-f01e-473d-bf41-6514c16ed4b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A15Z&sr=b&sp=r&sig=Qoqn%2B5ajLPDHZmlFSya5KBTSr%2Bo2FhIX2%2B5cEqzwK3U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:51:15.8702955Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A25Z&sr=b&sp=r&sig=4UtY94Cr4V8mR5FZXn3iWXjnt6Qf%2BZ16m9kdF5Qd0dk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:06:25.2126209Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '577' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:15 GMT + - Wed, 06 Nov 2024 09:56:25 GMT mise-correlation-id: - - 5bf81a4d-a7f7-4d7b-baf4-bf8a270578e0 + - bb2e2518-1943-4462-8e84-6165c83788d5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054115Z-166cf497cd4r6hmp97992txd7w00000007yg0000000098e1 + - 20241106T095624Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d6y4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T21%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A16Z&sr=b&sp=r&sig=N20FzgGWvooFFhQKR%2BeAcoJAd9KLXJteud4xuW8xc2U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:16.4955084Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A25Z&sr=b&sp=r&sig=aEn17DE5NWyzJ15TDt5n7deoRC3jQFTFYQUVTCHioco%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:25.7353757Z","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 connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:16 GMT + - Wed, 06 Nov 2024 09:56:25 GMT location: - - https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 18f77339-7151-4d09-84f7-2a228092d493 + - f5a8f52b-747f-4003-adbc-bc69af910244 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054116Z-15484bdf4578qr4zk1588ep9380000000340000000008yzx + - 20241106T095625Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d721 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T12%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A16Z&sr=b&sp=r&sig=%2FsspOORy4i8vqn0MiE%2FoT8YDikkoxdQ9JlxSWIAbHNg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:16.9664099Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A23Z&ske=2024-11-06T16%3A56%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A26Z&sr=b&sp=r&sig=GtuAdBHgqBO3gDyrtmZNYsFeBTzoR2j92k%2B51Vf%2FL1E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:26.0492736Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -361,13 +362,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:16 GMT + - Wed, 06 Nov 2024 09:56:26 GMT mise-correlation-id: - - 85a2a4b1-5bc4-41c5-8587-8329ff3ac4c9 + - 487d0a4a-93ea-44ca-8d8e-bdc51c4f6673 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054116Z-18489d46dccggs4rh24eyxmvec00000007v00000000085hx + - 20241106T095625Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d72h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A22Z&sr=b&sp=r&sig=o%2BwD3OjSrGVYsUGNI8%2B%2BeT3k8nBMXDS%2Fsbw4rfBZ5us%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:22.335178Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A31Z&sr=b&sp=r&sig=lbU9l2idrkVZRCQRu7uZrF%2FJDzWa%2FuC9zuWLVEmdOec%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:31.3668457Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:22 GMT + - Wed, 06 Nov 2024 09:56:31 GMT mise-correlation-id: - - 92b8fdde-e437-4b76-92b6-21c4c72d6e90 + - 4c277ba7-1097-4407-9a38-2b0fc91fce0b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054122Z-166cf497cd4dfx7788bvx3ssu800000007rg00000000a6t5 + - 20241106T095631Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d7cc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A27Z&sr=b&sp=r&sig=5EzbIwcoXXEgJ%2BV41b3jFraHx6wUCgkCiEs17CA80Po%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:27.700061Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A23Z&ske=2024-11-06T16%3A56%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A36Z&sr=b&sp=r&sig=SU9hnYbMM6QWXsagMlBOOLeK9vah8TMs4ZSndu65Jxc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:36.6813954Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:27 GMT + - Wed, 06 Nov 2024 09:56:36 GMT mise-correlation-id: - - b57c3eaf-d3fe-4d01-ae62-0b45a18908a8 + - 797a560a-389b-4de7-a630-6c16fac84b2e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054127Z-18489d46dccd6w2hyw4dcpanpw00000008100000000053qc + - 20241106T095636Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d7mq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A33Z&ske=2024-10-16T12%3A41%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A33Z&sr=b&sp=r&sig=rvAJHG7DMGH8KSbPIZ8vNeXpElFAmZzvJynVrgGyy2g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:33.1116736Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A41Z&ske=2024-11-06T16%3A56%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A42Z&sr=b&sp=r&sig=74lIwOnkpu24uJV3BGwWzrajudDbYYC1Hjih3J5UpwQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:42.0353808Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -487,13 +488,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:33 GMT + - Wed, 06 Nov 2024 09:56:42 GMT mise-correlation-id: - - e513f263-50db-4d14-87e6-aa40141c74d5 + - 45af4a9c-ee0a-4b76-93b7-6098a5a8bfaf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054132Z-18489d46dccj85r8e2f8g29m2800000007xg00000000n8k9 + - 20241106T095641Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d7u7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T12%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A38Z&sr=b&sp=r&sig=2dYUOC2SU8mdfurnwiFTBZ3wg%2F6iaoi1VzfxTOcGX6o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:38.4835502Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A47Z&ske=2024-11-06T16%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A47Z&sr=b&sp=r&sig=5Xh%2BWFe44jxe%2BABkDiQTqAmc1O%2FkxYzqpBKU7LAn%2B34%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:47.3555332Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:38 GMT + - Wed, 06 Nov 2024 09:56:47 GMT mise-correlation-id: - - 2630f2a2-a60b-45d3-a220-86a3f3c8217e + - 18b089f5-cc2c-4997-a8ef-8a4d14de4a3d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054138Z-166cf497cd4z69dq84z53rfxzw00000005200000000063pc + - 20241106T095647Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d80v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T12%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A43Z&sr=b&sp=r&sig=DkD9pGfxHYEHXSo3eoOSQ81oa%2FhuetBK5QmzxHA%2FcZ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:43.8550345Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A41Z&ske=2024-11-06T16%3A56%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A52Z&sr=b&sp=r&sig=MAmXHFR%2FKEj2YRDXrfoDHVp6aKKHrXq1m%2B3vSd54cTw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:52.6439162Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -571,13 +572,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:43 GMT + - Wed, 06 Nov 2024 09:56:52 GMT mise-correlation-id: - - 34fa39b6-4a52-488e-8fb0-f3c2b602958d + - 8d3a1cb6-2778-44bd-bd79-1b22fb0bf69a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054143Z-166cf497cd4jdw4g4y9hv6ku6n00000007vg00000000639w + - 20241106T095652Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d86g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A46Z&ske=2024-10-16T21%3A41%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A46Z&sr=b&sp=r&sig=5jyLj8rFYtILEWZkkRGMY4VV2a36iqNdGspczQKDliE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:46.1284275Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A53Z&ske=2024-11-07T01%3A56%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A53Z&sr=b&sp=r&sig=APxo9XXaN2nLgJidivTtC2YHL26Xy1KpXRFRgB9%2BCOA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:53.9955026Z","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 connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:46 GMT + - Wed, 06 Nov 2024 09:56:54 GMT location: - - https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - cc0dfc9d-ec7e-4cd7-aa7e-730d803f5bb8 + - a8377d7d-8bbb-4933-9071-5c3941c897a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054143Z-15484bdf4578qr4zk1588ep938000000034000000000912f + - 20241106T095652Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d86v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,54 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A46Z&sr=b&sp=r&sig=UHwKaWok1YTET9OPtY96tNHRuaujie3Xiltcy33Lg9M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:46.5803869Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:41:46 GMT - mise-correlation-id: - - 63b0b040-3b0c-47e7-8812-245a2cddf8f6 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054146Z-15484bdf45792m2k6spfmpcgcc00000002r0000000004uav - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A33Z&ske=2024-10-16T12%3A41%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A51Z&sr=b&sp=r&sig=Mv9OIdnWjbNKi8GPvhVmIuxnfsKhCbc9wX2Zvobeaa8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:51.9588115Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A54Z&sr=b&sp=r&sig=2tc7wbyqCyQ0NoErrtS7UIKPH3YkLiDRzvPSp6tvY6w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:54.4524288Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -791,13 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:51 GMT + - Wed, 06 Nov 2024 09:56:54 GMT mise-correlation-id: - - 4cfa68cf-dfec-49aa-b70d-33189f475a4b + - 112dfdbb-7032-498e-8c31-0e5e3dfac984 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054151Z-18489d46dcccphr7hbyy83t0cc00000007w000000000d1dd + - 20241106T095654Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d88p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A46Z&ske=2024-10-16T21%3A41%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A57Z&sr=b&sp=r&sig=bzpVo3JVMCn8sCpV%2BGwKZOxLYHhk1k53ebEv3A%2FW8Zc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:57.3181899Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A53Z&ske=2024-11-07T01%3A56%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A59Z&sr=b&sp=r&sig=x7WS8K8fMJqaWyRtnFrassSLr%2FU5yPoJBcJjMetTmdQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:59.8189021Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -829,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:57 GMT + - Wed, 06 Nov 2024 09:56:59 GMT mise-correlation-id: - - da8f4f20-4bed-4187-810d-5cd9fafa7cea + - bd5c3008-fc9a-4bd8-a016-54608430da86 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054157Z-166cf497cd4q86sbftw3zaubkw000000082000000000766z + - 20241106T095659Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d8ey x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A46Z&ske=2024-10-16T21%3A41%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A02Z&sr=b&sp=r&sig=q1l5xs%2BD9nGT386gJAy61ynYbY%2FwM5KAxrkTSaGlO3k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:02.6820615Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A41Z&ske=2024-11-06T16%3A56%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A05Z&sr=b&sp=r&sig=pHHQUSv%2F8MbvBlHj37sValnPdpgr1LKAP61McMyWYKk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:05.1146186Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:02 GMT + - Wed, 06 Nov 2024 09:57:05 GMT mise-correlation-id: - - 9c53c248-55a7-4fd8-b5f8-507545424684 + - c424f700-8902-4cd7-b424-504e56a03e93 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054202Z-166cf497cd4r6hmp97992txd7w000000080g00000000535g + - 20241106T095704Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d8qs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A08Z&ske=2024-10-16T12%3A42%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A08Z&sr=b&sp=r&sig=RpLrThSw1Ar0RTa239RhmZ9AXg17zjYI8HDj3tJ3a2U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:08.0651548Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A10Z&sr=b&sp=r&sig=q0TCDFqeiJC9vUnxnuS7R4qBTuLDvWzYthQUOCPSx3Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:10.46713Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:08 GMT + - Wed, 06 Nov 2024 09:57:10 GMT mise-correlation-id: - - 4054d45b-a4c9-4f8f-b652-f242abdaabce + - 996183f2-f1fe-445e-8428-63d1d6afe527 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054207Z-17f5d849667mcvjp5w9fsbsaug00000007mg0000000029ku + - 20241106T095710Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d8xq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A33Z&ske=2024-10-16T12%3A41%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A13Z&sr=b&sp=r&sig=TROHflA%2Frg9E5O4MfnTrHHJZu%2BHv2dEbRc7TPdSUGVQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:13.3708091Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A47Z&ske=2024-11-06T16%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A15Z&sr=b&sp=r&sig=HP1%2BIq1vLJLtlzf8XEoP%2FrC8UHmJmJG5NPZR1FY3E%2FQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:15.7684804Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:13 GMT + - Wed, 06 Nov 2024 09:57:15 GMT mise-correlation-id: - - 8035b489-5723-4129-a300-5e957340c601 + - 5ae75a88-5d02-47ee-b433-42634ea0374b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054213Z-17f5d8496676hfvje9tymmm4rw000000075g00000000dbhn + - 20241106T095715Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d949 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T12%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A18Z&sr=b&sp=r&sig=wy%2Bq5jkgk%2F9TN0HgI70h%2BqXPQLUgQzmt5VVyNygj7OM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:18.67651Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A21Z&sr=b&sp=r&sig=F9gO0ZLTxNJL94eqbxC62q3msP1kDmgvxQiVgQN0lk0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:21.1254961Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:18 GMT + - Wed, 06 Nov 2024 09:57:21 GMT mise-correlation-id: - - fe90a0a7-c2df-4109-8742-cc97eb8cec31 + - c2b6d48b-3875-40d3-a223-ba7b85b0142e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054218Z-17f5d849667l8zqnh8wn56gx4400000008k0000000005m88 + - 20241106T095720Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d9bk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A33Z&ske=2024-10-16T12%3A41%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A24Z&sr=b&sp=r&sig=EPGeycLFDFWMIg2hUXPXqsL19ItKMXfuPD429vfZp%2FY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:24.0419582Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A47Z&ske=2024-11-06T16%3A56%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A26Z&sr=b&sp=r&sig=Wm%2FsRI9razfjkbpk1Vh%2F4y74DTAziIVVnPNOX9Fiqe0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:26.8273391Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1039,17 +998,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:24 GMT + - Wed, 06 Nov 2024 09:57:26 GMT mise-correlation-id: - - afce34d9-5070-4150-83d4-b6b5b114f4c5 + - 925cd922-443b-4397-9052-1288737a5cd9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054223Z-166cf497cd4t2mlmt579burh8800000006ug00000000mpts + - 20241106T095726Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d9n1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,13 +1026,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"df6f3d90-e710-4641-a410-badccf1595d9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01369441-98ab-4530-a8b3-3b941a8174f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fc1fd026-261d-49ce-90dc-1abd92098f74":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A08Z&ske=2024-10-16T12%3A42%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A24Z&sr=b&sp=r&sig=6ir4DX6vbbOwNq2aVtGXiD23L9htDNRiFQ%2F5M8s8Gv8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:24.3738778Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/bc8ac767-f01e-473d-bf41-6514c16ed4b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A08Z&ske=2024-10-16T12%3A42%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A24Z&sr=b&sp=r&sig=eMghqotzyWXhgyVFeaeNsWN9kIoss1PsAz%2FRzadZKzQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:24.3741535Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A08Z&ske=2024-10-16T12%3A42%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A24Z&sr=b&sp=r&sig=44gRP61rObyjTJ9Q1v%2FufR7H3U7XA9qhbWX35yqgb1Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:24.3742526Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:14.365Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:42:19.069Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"652f7728-3b5b-4e16-af78-b8cb9db0616c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"121a1ec9-c034-4383-9844-8b182c4b23f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc70a70-86bd-48c8-9b74-9eaf8649a2fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A27Z&sr=b&sp=r&sig=040aDqm7qwom1zoLK%2FAhsqwtk0lhWGavHBZJxI1spsg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:27.1703368Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A27Z&sr=b&sp=r&sig=IvSiTqXXsEUr%2Bf3DGjNfShRG13ruVoq0M0lSPbkKilE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:57:27.1705784Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A24Z&ske=2024-11-06T16%3A56%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A27Z&sr=b&sp=r&sig=%2BGc8TaxO%2FhthrWzosb%2F5GnGEpPuUuCEXxUqAvt9Z5QA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:57:27.1706546Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:56:22.705Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:24.812Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1082,17 +1041,17 @@ interactions: connection: - keep-alive content-length: - - '2774' + - '2772' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:24 GMT + - Wed, 06 Nov 2024 09:57:27 GMT mise-correlation-id: - - 02eaba70-2909-458c-a98b-451bab3947a1 + - 5ba09a52-c99a-4411-bf20-e32fa349d79a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054224Z-166cf497cd4r6hmp97992txd7w00000007zg0000000086m1 + - 20241106T095727Z-16998b5679fgq548hC1MAAaz3400000005yg00000000d9p1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1110,23 +1069,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:41.52259Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:41.52259Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2aab5add-874d-4340-8011-1f5149dccfb1.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":"2024-11-06T09:55:44.961123Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:55:44.961123Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '655' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:24 GMT + - Wed, 06 Nov 2024 09:57:30 GMT etag: - - '"c5010879-0000-0200-0000-670f51f00000"' + - '"fa002d04-0000-0200-0000-672b3d390000"' expires: - '-1' pragma: @@ -1142,7 +1101,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CBECB8EB5D4A495ABE010F7EDFE18D55 Ref B: CO6AA3150219019 Ref C: 2024-10-16T05:42:24Z' + - 'Ref A: 2E3C5548B51E4B8CAC430199F9F801C2 Ref B: MAA201060514045 Ref C: 2024-11-06T09:57:29Z' status: code: 200 message: OK @@ -1156,13 +1115,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"df6f3d90-e710-4641-a410-badccf1595d9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01369441-98ab-4530-a8b3-3b941a8174f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fc1fd026-261d-49ce-90dc-1abd92098f74":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T12%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=eaT4LJ9N924T7I6Wmtb4%2FWrJqffKNNlt2HWhXTS9Jr4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:25.598793Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/bc8ac767-f01e-473d-bf41-6514c16ed4b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T12%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=C5BcwSPL320EU9X1YkKdXvGTM9%2BFk%2FPbADCuj21OFF4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:25.5990179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A16Z&ske=2024-10-16T12%3A41%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=M1%2FmMbbpNW29xNdJZ9k7omNtMt2tfMTxYKkJVlglqvI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:25.5991147Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:14.365Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:42:19.069Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"652f7728-3b5b-4e16-af78-b8cb9db0616c":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"121a1ec9-c034-4383-9844-8b182c4b23f6":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc70a70-86bd-48c8-9b74-9eaf8649a2fb":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A32Z&sr=b&sp=r&sig=hhWOyTUaY6oyj6KHn6Fl6znyZpx2Co%2FV0M7UbQGsKgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:57:32.409873Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A32Z&sr=b&sp=r&sig=w6%2FG4%2BwydHDHJk9fiGzyhdrEVEjA%2BXMCFMytnOp8o%2B8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:57:32.4101693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A54Z&ske=2024-11-06T16%3A56%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A57%3A32Z&sr=b&sp=r&sig=AtnSwsiCiEMcnQdyX%2FuK89LVb%2FH9jiuMgHzVSA5Cing%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:57:32.4104774Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:56:22.705Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:57:24.812Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1175,13 +1134,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:25 GMT + - Wed, 06 Nov 2024 09:57:32 GMT mise-correlation-id: - - 1cbb3284-3122-4679-abc3-5c703f52325c + - 75f074a7-adb1-4b64-b774-247bdbab9dbd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054225Z-18489d46dccp2df8e3m20gzz8w00000007x0000000003n02 + - 20241106T095731Z-16bf8d9b4c7hxwq4hC1BOM82c4000000065g00000000yrr8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,23 +1158,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:41.52259Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:41.52259Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2aab5add-874d-4340-8011-1f5149dccfb1.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":"2024-11-06T09:55:44.961123Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:55:44.961123Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '655' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:25 GMT + - Wed, 06 Nov 2024 09:57:34 GMT etag: - - '"c5010879-0000-0200-0000-670f51f00000"' + - '"fa002d04-0000-0200-0000-672b3d390000"' expires: - '-1' pragma: @@ -1231,7 +1190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B59D7E14A4BE4A32ADDA7DDF4C8C67F3 Ref B: CO6AA3150218027 Ref C: 2024-10-16T05:42:25Z' + - 'Ref A: 6DE6DB98BAD94A72B774F991B568F024 Ref B: MAA201060516037 Ref C: 2024-11-06T09:57:34Z' status: code: 200 message: OK @@ -1245,12 +1204,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2aab5add-874d-4340-8011-1f5149dccfb1.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview + uri: https://55d62820-1e58-4b44-8874-d8a646f173d0.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A26Z&sr=b&sp=r&sig=LgnokH%2F5I9MBfefDnTKq3FJ7RbKZSPhIix4TrAxXO6A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:26.7822922Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/bc8ac767-f01e-473d-bf41-6514c16ed4b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A26Z&sr=b&sp=r&sig=Rxr9kFy3aCuXheKTfAT70tokBiRfVArLl1Nkt6lxNsI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:52:26.782362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/78c56266-1a26-4c78-bd4c-b60f3cd83a55?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A26Z&sr=b&sp=r&sig=LDNEp0ib%2BPoBCW478gNL5zKIrYK%2BqeXf6nOR%2BL1w6L8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:26.7824362Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=yKYkWX6QIeaTV4tki20fOZo6fR1HTP6SOE1vY6GM3tA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:07:37.7517726Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4acddf86-d4a6-4cfc-983a-025d66d5eed0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=ars9MhqQxeTHhbAArtJxmlEvEO7vgeoggiHj4dL%2FCzM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:07:37.751986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/c105943d-c994-400f-80f9-d2d6a3bc83f9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=wA8WK08EzXP2fQXi2IbRd0h0EZlM8opaX4qOxNHZ0qc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:07:37.7522076Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1259,17 +1218,17 @@ interactions: connection: - keep-alive content-length: - - '1712' + - '1706' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:26 GMT + - Wed, 06 Nov 2024 09:57:37 GMT mise-correlation-id: - - a27aafd5-3449-431f-bd09-ab41cd4a4870 + - be561f0e-77e6-4969-b50e-4d4486b9b8c3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054226Z-18489d46dccj85r8e2f8g29m2800000007y000000000h1x7 + - 20241106T095737Z-16998b5679f2sxr6hC1MAAh77000000005zg00000000aark x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1287,9 +1246,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.31.0 method: GET - uri: https://rfctbxqgvn5s1iirs49inh4j.z14.blob.storage.azure.net/c21c142a-4799-4fbd-8cae-3ccf56c08413/c5894019-8b25-43bd-acd4-12f3f6f9b7cc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A15Z&ske=2024-10-16T12%3A41%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A26Z&sr=b&sp=r&sig=LgnokH%2F5I9MBfefDnTKq3FJ7RbKZSPhIix4TrAxXO6A%3D + uri: https://rmki54gwjjc2qwofy3ogmeop.z22.blob.storage.azure.net/4180cbe1-e5b3-471a-aea8-c6b7d47be0af/4f4d5b94-024f-494a-b4fb-b394d61f982d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A56%3A25Z&ske=2024-11-07T01%3A56%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A07%3A37Z&sr=b&sp=r&sig=yKYkWX6QIeaTV4tki20fOZo6fR1HTP6SOE1vY6GM3tA%3D response: body: string: "\r\n", "value": "78"}, "2be54260-a539-4051-bf45-794a55f4e71f": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "6bbab08d-396d-43f0-b5bc-7e18118cc9c5": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"0833ffc5-fe34-42d5-862f-1062406728c9": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "75b77f5b-5e6e-4c28-99af-fd6027c9c0b5": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "3b30e6fa-03f5-4680-a24c-b70003e122b3": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a3e7fc92-e374-4afa-bf9c-41f4188aa8ce":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2be54260-a539-4051-bf45-794a55f4e71f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bbab08d-396d-43f0-b5bc-7e18118cc9c5":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:09.857Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:39:09.857Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"0833ffc5-fe34-42d5-862f-1062406728c9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75b77f5b-5e6e-4c28-99af-fd6027c9c0b5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3b30e6fa-03f5-4680-a24c-b70003e122b3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:06.867Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:54:06.867Z","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 connection: - keep-alive content-length: - - '1050' + - '1044' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:09 GMT + - Wed, 06 Nov 2024 09:54:06 GMT location: - - https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-03-01-preview + - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 1af48b02-7bf0-4d26-acf6-61a6d187e39c + - d6304475-f957-4670-b18f-c48e9b5dc727 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053909Z-17f5d849667p5mkz7t2q3k9cbn00000006hg000000008aqg + - 20241106T095406Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015az x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:10 GMT + - Wed, 06 Nov 2024 09:54:07 GMT mise-correlation-id: - - 627344cc-1db0-4f94-bcf7-4584d02cae38 + - 216602ad-75da-4f5a-a5e8-a9772ce83a90 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053909Z-17f5d8496677xw98qrdesns90400000008tg0000000063dp + - 20241106T095407Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015bc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/e20272b7-1a96-46c6-b568-4e166a13b407?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A10Z&sr=b&sp=r&sig=KuykvKs5POQXZbjfsdcDOeRCYA2nLyW6GSzf7WPICK0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:10.6227348Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A08Z&sr=b&sp=r&sig=FEzdqoXRN52qtj%2BZ0AyUBI6DjAmsCoPEWv4fLTBo%2B7g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:08.0497255Z","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 connection: - keep-alive content-length: - - '570' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:10 GMT + - Wed, 06 Nov 2024 09:54:08 GMT location: - - https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - a0958198-ef16-444b-84c4-64abe82e6bdb + - c29deb67-7fd0-4a45-bc75-eb7a7e0fe63a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053910Z-17f5d849667xvkmtuucmr70ff400000006kg0000000018az + - 20241106T095407Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015bs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/e20272b7-1a96-46c6-b568-4e166a13b407?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A10Z&sr=b&sp=r&sig=KuykvKs5POQXZbjfsdcDOeRCYA2nLyW6GSzf7WPICK0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:10.9723725Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A08Z&sr=b&sp=r&sig=FEzdqoXRN52qtj%2BZ0AyUBI6DjAmsCoPEWv4fLTBo%2B7g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:04:08.4273323Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:10 GMT + - Wed, 06 Nov 2024 09:54:08 GMT mise-correlation-id: - - 866296d1-f0b6-49fe-942d-23582e2de221 + - 9971acef-2802-4fe1-8411-f32db812151f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053910Z-165bfd566cf626cbrvmzsprhfs00000006zg000000009mth + - 20241106T095408Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015c4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=DwDdSTSzDADSM%2BIF4iA%2BjkW3P0TUZlfDdTw15NQhBqk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.4232038Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A09Z&sr=b&sp=r&sig=ODP6EC51PiwagmtT%2BoT1AkSYh1ug5bZqtdiRI1Obn4w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:09.0346918Z","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 connection: - keep-alive content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 09:54:09 GMT location: - - https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 490dd4a5-2da6-4129-ba0c-c333a21e386e + - cc19036e-62aa-4b1b-bbec-d14fe2feb250 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053911Z-17f5d849667t9hx53vqernxx58000000084g00000000dc1e + - 20241106T095408Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015cc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=X%2BdJcYDMWt3y%2BdkwaVu6oTzzguMZSrOBNXo7xuVN8JQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.7286631Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-06T16%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A09Z&sr=b&sp=r&sig=a2xzLEIt%2FJHcU66nb3P7MDL95ws4uhlSaOM%2F2Ncq51A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:09.51967Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 09:54:09 GMT mise-correlation-id: - - e697f5b1-14f8-4136-8aa9-fdf51be823a7 + - cfeb3fad-3429-47ca-9035-c281c0627e1b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053911Z-17f5d849667h7djshftd289dx000000007w00000000054rh + - 20241106T095409Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015cu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A17Z&sr=b&sp=r&sig=AmaVKAxouS3rP8217faJRVRVr05jtNxOMC21TAENjsY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:17.0449175Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A14Z&sr=b&sp=r&sig=bdEulPVLa3DpBnMSRnjBXCp%2FjznGFlNfVJ6u%2BuwX3y0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:14.9106582Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:17 GMT + - Wed, 06 Nov 2024 09:54:15 GMT mise-correlation-id: - - 58a8c9d3-136b-4bd2-970f-4ff9157f39c8 + - 2301b96d-23fd-4b4e-822b-d248c7557a5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053916Z-17f5d849667qmr9byegk96121000000009fg000000001byz + - 20241106T095414Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015kd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A22Z&ske=2024-10-16T12%3A39%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A22Z&sr=b&sp=r&sig=%2B5Pi09qWjGT3nEIu%2Bluj5xmhlvobI8W%2Bp18EaAFhRPk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:22.3809146Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A20Z&sr=b&sp=r&sig=YrX7Y0%2F5uZue4YjzBjFCDtDs6dok3VDlf%2BI%2FxVoeV2c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:20.2800204Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:22 GMT + - Wed, 06 Nov 2024 09:54:20 GMT mise-correlation-id: - - d8cdfa9b-21ef-4ed8-b2de-c2c3e98bd394 + - 4ce40a94-695c-4637-bb37-e26f4437116a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053922Z-165bfd566cf4ghtzyebch8wysc00000004kg00000000craa + - 20241106T095420Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015rr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A22Z&ske=2024-10-16T12%3A39%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A27Z&sr=b&sp=r&sig=TI9CNeysQJzhl%2FJO5S4CCrx4y3zcdIdA0tpjEpnF%2BYY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:27.7125498Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A25Z&sr=b&sp=r&sig=fGDifBdCVUNrKK9Au66oQdsUfBNt7GAIqOU375OwRZQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:25.6197286Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:27 GMT + - Wed, 06 Nov 2024 09:54:25 GMT mise-correlation-id: - - 3dd79262-6bc1-454b-ae7b-a3e75f6c7bdc + - ae003d60-91e5-4478-b9ab-624dedc529d5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053927Z-17f5d849667kzjrv7fd72zv9x0000000060g000000003q9k + - 20241106T095425Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000015vf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A33Z&sr=b&sp=r&sig=3hKpjxokroQG6TrMCArLWXCHqYjoq3nbplEtqrfT5YQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:33.028709Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A30Z&sr=b&sp=r&sig=qHmkG8nESrviJ%2BeynNa1vzz2qstmYjETV0aVlesTXyY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:30.9067776Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:33 GMT + - Wed, 06 Nov 2024 09:54:31 GMT mise-correlation-id: - - 8c85d3af-c788-404e-89c6-b837ba8d4363 + - 2d874859-1148-4ac0-995e-294ba1f42cb8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053932Z-165bfd566cfvwchppx9a61kc3g000000017g00000000ewym + - 20241106T095430Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g00000000161m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T12%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A38Z&sr=b&sp=r&sig=a333TcqGLy0DCzPIYP5zAsnNw55vQfiTgTX9gM8k7t0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:38.3607184Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A36Z&sr=b&sp=r&sig=yDLFT%2BsEEAit%2F9A5aNNgwM0hbMfUUj%2F%2FOtD%2FppC%2BX8A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:04:36.2355491Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -567,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '565' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:38 GMT + - Wed, 06 Nov 2024 09:54:36 GMT mise-correlation-id: - - 1d9e1fb7-402f-4c84-bec0-2ee4d4fe5713 + - 9a4457e7-dde1-4c90-9abc-f181755f09e5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053938Z-165bfd566cf4c8jp0vyu991gv400000005pg00000000aegr + - 20241106T095436Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g00000000169u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A38Z&sr=b&sp=r&sig=2o2CAbkzjmOXz9b%2BvqSJvc3tiYc7hDiTPVtIOBVmnBg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:38.8206491Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A37Z&ske=2024-11-07T01%3A54%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A37Z&sr=b&sp=r&sig=qvBQXkJ%2BRgWda5LwgSTuEL5%2FKRVI1KIMyxJgHYz7KxM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:37.930437Z","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 connection: - keep-alive content-length: - - '557' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:38 GMT + - Wed, 06 Nov 2024 09:54:38 GMT location: - - https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 954fa022-7c2e-45af-a106-b8313997f852 + - c3c65011-3f7a-48c9-be3b-80c8d4571f6c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053938Z-17f5d849667xvkmtuucmr70ff400000006fg000000007c54 + - 20241106T095436Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016a4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,96 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A39Z&sr=b&sp=r&sig=ZvrkywVsnxd3X10zuLWVDbbaoye%2FQwp22o7XDnwVzYs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:39.105697Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:39 GMT - mise-correlation-id: - - 7dfd22a2-8877-4626-909f-13be8db91a29 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053938Z-17f5d849667tvht4m3rc1u623400000008ug000000006wfg - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A44Z&sr=b&sp=r&sig=q9IHrVo%2FE6t0gbMoIRFmJcf0ddCdiCT0z3IxEnF8Gc0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:44.4268932Z","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 - connection: - - keep-alive - content-length: - - '557' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:44 GMT - mise-correlation-id: - - 31820361-a206-4317-9823-c774d6b073f4 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053944Z-18489d46dccmwsl5v24n61fa84000000080g000000000bnb - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A22Z&ske=2024-10-16T12%3A39%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A49Z&sr=b&sp=r&sig=FtCCk2HGfdqZK5XZVFV5OYtvU5KinQi4nvKRFF%2Bvbn0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:49.8473136Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A38Z&sr=b&sp=r&sig=4gay84Z9oScHCzEaXyk97fwmvKja9%2FVs1vv8KNXbSVo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:38.3124579Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -829,17 +746,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:49 GMT + - Wed, 06 Nov 2024 09:54:38 GMT mise-correlation-id: - - a7fe773f-30bd-4a2f-8c82-3ef83ed210d3 + - 6bd39fab-138b-4f8f-9c1e-1585c0485335 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053949Z-18489d46dccmwsl5v24n61fa8400000007u000000000fh7b + - 20241106T095438Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016d8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A55Z&sr=b&sp=r&sig=a68xjNMbL35hIrv6%2FWqoGFGmVFpV6NPLhKwvGbSZhZ0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:55.255124Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A43Z&sr=b&sp=r&sig=GYWaSwmvfLeE8J4CEgfuQZsUaswViPkKoAOMFjwTgto%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:43.7359488Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -875,55 +792,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:55 GMT - mise-correlation-id: - - 9ae87dca-54ad-4abe-87fb-b424afe0f0f2 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053955Z-18489d46dccp2df8e3m20gzz8w00000007u0000000009hry - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A22Z&ske=2024-10-16T12%3A39%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A00Z&sr=b&sp=r&sig=3wzXyKzoAnk0cPL4h9JxKyNUX80phGSSLve%2FVakEgd4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:00.4745889Z","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 - connection: - - keep-alive - content-length: - - '557' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:00 GMT + - Wed, 06 Nov 2024 09:54:43 GMT mise-correlation-id: - - 0cac4129-f7fa-426e-9768-2701dc0e228c + - 6045d4f2-5bca-48aa-8433-1c2e4006f13b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054000Z-18489d46dcc7qds9rw9wr310dc0000000670000000000yry + - 20241106T095443Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016n7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A35Z&ske=2024-10-16T12%3A39%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A05Z&sr=b&sp=r&sig=4oMoUHw55EUdh4s%2FXCkv0DyUHFJapVSYlh0rmNfXpkA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:05.7846179Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A49Z&sr=b&sp=r&sig=JeYNVYUZ%2BDHBao5zfWXBH%2FG9H8vSvsL4J83ui7th5XE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:49.0532875Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:05 GMT + - Wed, 06 Nov 2024 09:54:49 GMT mise-correlation-id: - - 74ac83e0-b037-4011-8e56-f49ac3d5ce1a + - d07797d2-51c6-4f2e-8d14-d69a8686f946 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054005Z-18489d46dccnnh2b19wcyx7sm00000000820000000001pf7 + - 20241106T095448Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000016ud x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A11Z&sr=b&sp=r&sig=2T0v2y3Vo935os3P5RY4yN8%2BYlLm5%2FEjOzHN%2FBGAFPA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:11.1130038Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A54Z&sr=b&sp=r&sig=BgQlcmXPZJl6Bcwc6o%2BBoc8GLlOVvTHph7d6zMZ0bfI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:54.3437624Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:11 GMT + - Wed, 06 Nov 2024 09:54:54 GMT mise-correlation-id: - - 16c963c4-2101-41df-b213-175c58a67169 + - 1a6d1b51-1e76-46ad-9974-207126666267 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054010Z-17f5d849667t9hx53vqernxx58000000088g000000004kxq + - 20241106T095454Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g000000001703 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A16Z&sr=b&sp=r&sig=IAVHixHxSEuaHrXB87yXG0E%2FUzkk8Mni10BHO%2Fua540%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:16.432324Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A04%3A59Z&sr=b&sp=r&sig=h46pL2KGm08HDBvn6jmGqqbAnspxHr7o6%2B5PZD85Iak%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:04:59.6271363Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1043,13 +918,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:16 GMT + - Wed, 06 Nov 2024 09:54:59 GMT mise-correlation-id: - - 557cca80-ee2e-4f52-bdd7-7d75a5c754bf + - 650f9eba-c1d5-410c-865c-1e560e77073e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054016Z-17f5d8496676bkwfhshcac428800000008g0000000008skx + - 20241106T095459Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g00000000175p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A21Z&sr=b&sp=r&sig=z%2F7L2Idh35En5Q5eZ4GN6S3R%2BY2oyzcqgBJaXDyV9FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:21.7367702Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A04Z&sr=b&sp=r&sig=rXaih51fLYFk1oJAWi8qq6Fe40aVsAnlfYmcGKL3Bgo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:04.9196901Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1081,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:21 GMT + - Wed, 06 Nov 2024 09:55:05 GMT mise-correlation-id: - - b05b384d-5137-4bcd-add5-59f9f647fcc8 + - b68fc0ab-7100-4471-b339-48154ae99969 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054021Z-165bfd566cf4c8jp0vyu991gv400000005ng00000000csfv + - 20241106T095504Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000017cc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,13 +984,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"a3e7fc92-e374-4afa-bf9c-41f4188aa8ce":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2be54260-a539-4051-bf45-794a55f4e71f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bbab08d-396d-43f0-b5bc-7e18118cc9c5":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A22Z&sr=b&sp=r&sig=k4A9GvAUOuWn%2BYK1RGd%2B3CPmvPyvz9AV7%2Bn6d%2F8VBU4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:22.0173812Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/e20272b7-1a96-46c6-b568-4e166a13b407?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A22Z&sr=b&sp=r&sig=YhpR00%2BpT6FVhqsIHRaI3W3nH%2BkJVT%2F6IrJ9XHu8%2BZs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:22.0177818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A22Z&sr=b&sp=r&sig=BI1x2fqbkpb6fXaremmGo24A9tpTn3u%2F2AC9WMLMuVI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:22.017865Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:09.857Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:16.832Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"0833ffc5-fe34-42d5-862f-1062406728c9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75b77f5b-5e6e-4c28-99af-fd6027c9c0b5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3b30e6fa-03f5-4680-a24c-b70003e122b3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A05Z&sr=b&sp=r&sig=yDbnTMYE%2BQ0G5F6ISKxZB6ua%2Bo2KaWE%2F%2FD6EYpSiwF4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:05.2080872Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A05Z&sr=b&sp=r&sig=9ylN8heyiTRO9Pp2Z8TPI5vOASS4FfF8xf1cEKSe8z0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:05.208608Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A05Z&sr=b&sp=r&sig=%2B7XG0aA8Itic%2BlgmB16B0HKQMWLZU%2F1cYNVumaPD88k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:05.2088397Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:06.867Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:01.908Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1124,17 +999,17 @@ interactions: connection: - keep-alive content-length: - - '2778' + - '2771' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Wed, 06 Nov 2024 09:55:05 GMT mise-correlation-id: - - 072160dd-e1c5-4eb8-8731-21b38c237695 + - e274ed1e-0bf2-47d8-9404-f35c3c7a5c5c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054021Z-165bfd566cfvnfldckvfavskxn00000007bg000000008gs4 + - 20241106T095505Z-184f6b5dbd8k5dgkhC1MAAf5kw000000061g0000000017cq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1152,23 +1027,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6994902Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6994902Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"599d9d7f-7264-4e43-a108-e75b32fc6f9a.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":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Wed, 06 Nov 2024 09:55:06 GMT etag: - - '"c501c272-0000-0200-0000-670f516f0000"' + - '"f9009afe-0000-0200-0000-672b3caa0000"' expires: - '-1' pragma: @@ -1182,9 +1057,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 9C856E21C1E94955A4A1AFB9381F9CE3 Ref B: CO6AA3150218023 Ref C: 2024-10-16T05:40:22Z' + - 'Ref A: E5CEAC49088D4043B299628238132141 Ref B: MAA201060515017 Ref C: 2024-11-06T09:55:06Z' status: code: 200 message: OK @@ -1198,13 +1073,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"a3e7fc92-e374-4afa-bf9c-41f4188aa8ce":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2be54260-a539-4051-bf45-794a55f4e71f":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"6bbab08d-396d-43f0-b5bc-7e18118cc9c5":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/238adef6-f2f8-4e59-a48a-bf5ee26471fc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A22Z&sr=b&sp=r&sig=W9vejJMtDotaGYrGks%2F6fHEREYvY7sud08bqWD0%2FMBA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:22.8676539Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/e20272b7-1a96-46c6-b568-4e166a13b407?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A22Z&sr=b&sp=r&sig=ntWEB9njJXb6ISiV2XLC3SkBkpSSrpsqV88zSiYsCTA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:22.867938Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A22Z&sr=b&sp=r&sig=yk%2FcXzs1XkLM6ezkrck51hNOCeSNVFzxrj%2FqPDfLV7Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:22.8680206Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:09.857Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:16.832Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"0833ffc5-fe34-42d5-862f-1062406728c9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"75b77f5b-5e6e-4c28-99af-fd6027c9c0b5":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"3b30e6fa-03f5-4680-a24c-b70003e122b3":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/5f6a98c2-aea7-4923-a031-cbbd44a1bbbc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A09Z&sr=b&sp=r&sig=iydCteXFxNQoTWpeLJi3I7ZbKyClrYFnkeq2mLKgVJg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:55:09.7632762Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A09Z&sr=b&sp=r&sig=VyUoDY7HMS88xXbChSL0Q0HGIS010scHxu1OzjElNzo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:55:09.7636315Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A09Z&ske=2024-11-07T01%3A54%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A55%3A09Z&sr=b&sp=r&sig=tLR2iElbenLEHRONzO8HDUs8pDd9uzYsfofjeROeiUg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:55:09.7637682Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"file-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:54:06.867Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:55:01.908Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1213,17 +1088,17 @@ interactions: connection: - keep-alive content-length: - - '2780' + - '2770' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Wed, 06 Nov 2024 09:55:09 GMT mise-correlation-id: - - 41891a2d-f490-4012-a4dc-c7b0d84e7248 + - 99f35876-d460-44c5-b2df-1e06bca9478d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054022Z-17f5d849667qg6t9uvfp3m2p2w00000005t0000000000zn4 + - 20241106T095509Z-16bf8d9b4c79v4bbhC1BOMgnfn000000069g0000000071g8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1241,23 +1116,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6994902Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6994902Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"599d9d7f-7264-4e43-a108-e75b32fc6f9a.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":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:23 GMT + - Wed, 06 Nov 2024 09:55:12 GMT etag: - - '"c501c272-0000-0200-0000-670f516f0000"' + - '"f9009afe-0000-0200-0000-672b3caa0000"' expires: - '-1' pragma: @@ -1273,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FAA95B21C1B74FD89DBBEA2BB6CE5869 Ref B: CO6AA3150220019 Ref C: 2024-10-16T05:40:23Z' + - 'Ref A: CEF5B41DCAF44CDFA00975FD3ED8436D Ref B: MAA201060516035 Ref C: 2024-11-06T09:55:11Z' status: code: 200 message: OK @@ -1289,9 +1164,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: string: '' @@ -1301,13 +1176,13 @@ interactions: connection: - keep-alive date: - - Wed, 16 Oct 2024 05:40:24 GMT + - Wed, 06 Nov 2024 09:55:14 GMT mise-correlation-id: - - 0d0547cd-f8e4-4071-8159-f0fd3b69ba43 + - ed13f3d5-5634-42eb-bdb2-4ea2de0ef0f6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054023Z-17f5d849667h7djshftd289dx000000007yg0000000011kq + - 20241106T095513Z-16bf8d9b4c7btxwlhC1BOMk7540000000660000000004kgr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1325,23 +1200,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6994902Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6994902Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"599d9d7f-7264-4e43-a108-e75b32fc6f9a.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":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:23 GMT + - Wed, 06 Nov 2024 09:55:16 GMT etag: - - '"c501c272-0000-0200-0000-670f516f0000"' + - '"f9009afe-0000-0200-0000-672b3caa0000"' expires: - '-1' pragma: @@ -1357,7 +1232,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 702659FE04EA459187B19CFE7DEEE269 Ref B: CO6AA3150219019 Ref C: 2024-10-16T05:40:24Z' + - 'Ref A: 58F498FC41774B48B325A1DAD8BDD8CC Ref B: MAA201060514049 Ref C: 2024-11-06T09:55:15Z' status: code: 200 message: OK @@ -1371,12 +1246,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/e20272b7-1a96-46c6-b568-4e166a13b407?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A24Z&sr=b&sp=r&sig=rux4hOT5QCxTGQbufpaDYnWTxXCHpip4hQZjaGexztM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:50:24.9598274Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A24Z&sr=b&sp=r&sig=2V08umlbIMZQv9okpiAXDygo72MkE6n8bs7VZuK%2F2wc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:24.9599147Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A37Z&ske=2024-11-07T01%3A54%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A17Z&sr=b&sp=r&sig=zg50fZdS0xZ4zBwHdXh55RldXVY1RYcVAowaEH7eRMI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:05:17.9369031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A37Z&ske=2024-11-07T01%3A54%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A17Z&sr=b&sp=r&sig=nK22pZUYSRAgG0tFgTvM6LrvwK4blALaAaL84ew3230%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:05:17.9370111Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1389,13 +1264,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:24 GMT + - Wed, 06 Nov 2024 09:55:18 GMT mise-correlation-id: - - d07f8ddb-7dd4-426c-ba9a-9eb4b20281af + - c5e9cc3e-f0a0-43ee-8486-b8a89d5ff6e1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054024Z-17f5d849667b4k641769x7f50c00000004kg000000002zsh + - 20241106T095517Z-16bf8d9b4c7686pmhC1BOMwzfw00000006hg00000000wsgb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1413,23 +1288,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6994902Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6994902Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"599d9d7f-7264-4e43-a108-e75b32fc6f9a.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":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:25 GMT + - Wed, 06 Nov 2024 09:55:20 GMT etag: - - '"c501c272-0000-0200-0000-670f516f0000"' + - '"f9009afe-0000-0200-0000-672b3caa0000"' expires: - '-1' pragma: @@ -1445,7 +1320,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A5B2E6ECBBC24C04B41EA008EA8B13BD Ref B: CO6AA3150220029 Ref C: 2024-10-16T05:40:25Z' + - 'Ref A: 1F785ABCD9D14166B8E516662DFEBAE6 Ref B: MAA201060515021 Ref C: 2024-11-06T09:55:19Z' status: code: 200 message: OK @@ -1551,33 +1426,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A26Z&ske=2024-10-16T21%3A40%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A26Z&sr=b&sp=r&sig=gw7BoQyxg%2Fq%2BEMUQOzgw2eFbOqZRJum1s0KqCCAT5hw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:26.7293539Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A24Z&sr=b&sp=r&sig=Byef0gviph617%2BcaXf8pK7yAiif1eYWRmMhmh3yIdmQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:24.1197532Z","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 connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:26 GMT + - Wed, 06 Nov 2024 09:55:24 GMT location: - - https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 765a1b38-f83c-49f9-a50c-203429603243 + - 0d638c21-9420-4a63-8157-cf3fffef8cfd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054025Z-17f5d849667ldxhfw3zcavh8t800000008d000000000ctcg + - 20241106T095522Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nphf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1595,12 +1470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A22Z&ske=2024-10-16T12%3A39%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A27Z&sr=b&sp=r&sig=xNwIG1THz0fizZk1jFPM6Dc%2F713bUzEtVVVfCXmrzk8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:27.0880092Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A24Z&sr=b&sp=r&sig=%2FrxEXnyxfqfjhRIgSl663Rv5zQVHhSdxPnemTfAoJMg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:24.398838Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1613,13 +1488,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:27 GMT + - Wed, 06 Nov 2024 09:55:24 GMT mise-correlation-id: - - dd02dd8b-3fdc-4994-b699-2e17aff3ad19 + - 37351cb5-9266-4e79-8666-0f5e6838ae9b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054026Z-17f5d849667pkml2n4g8rmfnnc00000005xg000000005b6y + - 20241106T095524Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001npv5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1637,12 +1512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A16Z&ske=2024-10-16T19%3A40%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A32Z&sr=b&sp=r&sig=%2BkB97RgGiDnZHVSvPvpgChW%2BzBmH6UotCjH8L0%2FDp3w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:32.4344467Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A29Z&sr=b&sp=r&sig=xsTC2XI7AstgJZC1jU3T4wNeKj0H3Eew2rkPdxxIpRk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:29.7429746Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1651,17 +1526,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:32 GMT + - Wed, 06 Nov 2024 09:55:29 GMT mise-correlation-id: - - f7007ba4-66d1-40f2-a4d8-5a358747c832 + - a032eb45-8a65-4d87-8282-b9a408d27f6d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054032Z-165bfd566cfd2dxssq2e8pp1zc000000095g000000004x7t + - 20241106T095529Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nqqq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1679,12 +1554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A37Z&sr=b&sp=r&sig=e5ovM4PHjTUXOY1dllsNCXHBD2IsriwczL7Tveunwx4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:37.7867497Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A35Z&sr=b&sp=r&sig=TWt48Sz2tWh7c%2Fs88NAJVhJUZJCWDJbAJ4w7gwmZz3Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:35.0256188Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1693,17 +1568,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:37 GMT + - Wed, 06 Nov 2024 09:55:35 GMT mise-correlation-id: - - 22faa9f0-1e2f-4791-ab2c-b6791ba79b63 + - 14a8a1f3-22f3-4812-a7a4-caaeb9119359 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054037Z-165bfd566cfg77fdsxzeea5p7n00000009g0000000003mzz + - 20241106T095534Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nr99 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1721,12 +1596,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A43Z&sr=b&sp=r&sig=Sd1etaw%2BD388G8%2FtazC4x22YmtxHox5sBCUPtFuILAo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:43.1572919Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A40Z&sr=b&sp=r&sig=PBDZwZKI4543waWi3PxaMW5hXSQbX6Gb5idNj8urcPM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:40.3383308Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1735,17 +1610,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:43 GMT + - Wed, 06 Nov 2024 09:55:40 GMT mise-correlation-id: - - 2c531714-43b2-4a18-a7d8-dd3fa7ff057f + - 4d641433-efb0-461c-9885-3b4feb3fa0ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054042Z-18489d46dcc7dl74pe8mubs3xc000000051000000000p2y6 + - 20241106T095540Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nryn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1763,12 +1638,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T21%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A48Z&sr=b&sp=r&sig=qXLICT%2BX%2BN7v6qPVA2u4L%2FR4N07xePKuDgEqdMkDan0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:48.4489663Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A45Z&sr=b&sp=r&sig=YcWQHGwJzHEbGd8B07haZMl6aGdhMbia4GQCV0VfIqk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:45.6364971Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1777,17 +1652,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:48 GMT + - Wed, 06 Nov 2024 09:55:45 GMT mise-correlation-id: - - 6c09ae91-c94a-4300-9fa4-57d25fad8bc7 + - 60abea91-98a0-497b-a02f-bfb13184ce4f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054048Z-17f5d849667vm2s91vagzspe4s0000000560000000009m8w + - 20241106T095545Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nsmr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1805,12 +1680,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A53Z&sr=b&sp=r&sig=WBf3iGT%2BEhhlKmWRpDaRLGmFDyGPqYCyvCvkehLb6h4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:53.8084089Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A50Z&sr=b&sp=r&sig=2%2B05BYoRncisLhgr8k1aYjUHAtUrEAxK3pQFBqXJ%2FTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:50.926994Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1819,17 +1694,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:53 GMT + - Wed, 06 Nov 2024 09:55:51 GMT mise-correlation-id: - - 3066afc8-df2f-4a6d-9621-25643b093b9f + - bebd3d47-4677-46c1-a11f-af6c5a56ebd8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054053Z-18489d46dcc4mwx2ddastu82g800000007r000000000fh3b + - 20241106T095550Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001nt80 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1847,12 +1722,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A26Z&ske=2024-10-16T21%3A40%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A59Z&sr=b&sp=r&sig=8Zj9IjbP4MsT7fUJg90qm0REZFrEuIiVo5pDvslzGVU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:59.1363936Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A55%3A01Z&ske=2024-11-06T23%3A55%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A05%3A56Z&sr=b&sp=r&sig=WrVil3nobXZsR3mCAeRdDXgSqFBhSKkuQjotfQQxvW4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:05:56.1964286Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1861,17 +1736,17 @@ interactions: connection: - keep-alive content-length: - - '553' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:59 GMT + - Wed, 06 Nov 2024 09:55:56 GMT mise-correlation-id: - - 3958be11-36ee-4340-8c68-ddc98ae2942a + - 6d7ee67c-d47c-4769-90b8-e0bc2a4fccb9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054058Z-18489d46dccd6w2hyw4dcpanpw00000008200000000018r4 + - 20241106T095556Z-16bf8d9b4c7686pmhC1BOMwzfw00000006eg00000001ntxu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1889,23 +1764,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6994902Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6994902Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"599d9d7f-7264-4e43-a108-e75b32fc6f9a.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":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:09 GMT + - Wed, 06 Nov 2024 09:56:09 GMT etag: - - '"c501c272-0000-0200-0000-670f516f0000"' + - '"f9009afe-0000-0200-0000-672b3caa0000"' expires: - '-1' pragma: @@ -1921,7 +1796,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 910F38F06BEC46BF8EAB8D4EF61CC8F6 Ref B: CO6AA3150218049 Ref C: 2024-10-16T05:41:09Z' + - 'Ref A: 11F27F9A61DE463CA9546732DF2A5147 Ref B: MAA201060515029 Ref C: 2024-11-06T09:56:08Z' status: code: 200 message: OK @@ -1935,12 +1810,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A26Z&ske=2024-10-16T21%3A40%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A10Z&sr=b&sp=r&sig=21Nc4GFflFqUwgPNRTDltw2WyW5VsbCo0pvabbErnEI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:10.2259671Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/e20272b7-1a96-46c6-b568-4e166a13b407?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A26Z&ske=2024-10-16T21%3A40%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A10Z&sr=b&sp=r&sig=l7HGvqlYmqTY%2FhCDEjawpE4UtrrKpiWdJIahcTTr8Qo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:51:10.226072Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/3d5a1917-5d99-45b4-a8dc-568ab73fd8f4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A26Z&ske=2024-10-16T21%3A40%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A10Z&sr=b&sp=r&sig=e2Rc2QHuPOqHjna8jYdJTsUeXVr7ljWFPUOLONaJemU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:10.2261689Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A12Z&sr=b&sp=r&sig=o%2Ba%2F0eeaLFtPU59rYXqn0iCsV0acdtflHQ%2BN2O5Hcok%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:12.1889963Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/92812732-5d52-4a9b-b9e3-b3f889c51d4d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A12Z&sr=b&sp=r&sig=3KyzIdd2JdIs5yXTi4%2B08Oft7y6AREe7PRACCm6KUfQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:06:12.1891325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/adfd4660-46e5-4dac-bc14-e59ce17c5200?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A08Z&ske=2024-11-06T16%3A54%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A12Z&sr=b&sp=r&sig=rECACYtDoW6XM7n4NEAeMGfB%2BCGcjWp3NmxKdQFy%2BPQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:06:12.1892643Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1949,17 +1824,17 @@ interactions: connection: - keep-alive content-length: - - '1703' + - '1717' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:10 GMT + - Wed, 06 Nov 2024 09:56:12 GMT mise-correlation-id: - - be20b499-a650-43b5-b433-91d5504bea25 + - 78200fbb-2015-48d5-ab73-a481514951e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054109Z-166cf497cd4jqnrcydhdctbvm400000007s000000000aqsn + - 20241106T095611Z-16bf8d9b4c79v4bbhC1BOMgnfn00000006a0000000002x1g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1977,23 +1852,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6994902Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6994902Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"599d9d7f-7264-4e43-a108-e75b32fc6f9a.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":"2024-11-06T09:53:22.554928Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:53:22.554928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:10 GMT + - Wed, 06 Nov 2024 09:56:15 GMT etag: - - '"c501c272-0000-0200-0000-670f516f0000"' + - '"f9009afe-0000-0200-0000-672b3caa0000"' expires: - '-1' pragma: @@ -2009,7 +1884,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F88A38F0BF604D94A5B96995937B61F0 Ref B: CO6AA3150217025 Ref C: 2024-10-16T05:41:10Z' + - 'Ref A: A6F7A77CD5B8440E9C47DD9179AC3E54 Ref B: MAA201060516025 Ref C: 2024-11-06T09:56:14Z' status: code: 200 message: OK @@ -2023,12 +1898,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://599d9d7f-7264-4e43-a108-e75b32fc6f9a.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://60af6311-cc49-4d83-8bfd-a6ad900bc692.eastus.cnt-prod.loadtesting.azure.com/tests/file-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A11Z&sr=b&sp=r&sig=kZB%2B9dss2s78gK5NjDquZgdgoUykesTT59%2F9xB5zBIQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:11.1138805Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A18Z&sr=b&sp=r&sig=Bm%2Befses3N7F9cqjYMsg9cX%2FxGTCtltdlARp34Ai%2F6k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:06:18.0738693Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -2037,17 +1912,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:11 GMT + - Wed, 06 Nov 2024 09:56:18 GMT mise-correlation-id: - - 1256fd54-0d72-4441-a0cf-cd7bd8938f02 + - 9a0c65ff-1550-4ef9-a5a6-0b07436a5fd6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054110Z-18489d46dccj85r8e2f8g29m2800000007z000000000fhpg + - 20241106T095617Z-16bf8d9b4c7j768bhC1BOMn2hc00000001gg000000000kmx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2065,9 +1940,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.31.0 method: GET - uri: https://jfsy4e3w646n23qbbiramv9v.z6.blob.storage.azure.net/36acafb3-e706-4fab-9fda-b4f8a3b19947/7dfee53b-c830-4af6-b920-ebd74df81b8f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A11Z&sr=b&sp=r&sig=kZB%2B9dss2s78gK5NjDquZgdgoUykesTT59%2F9xB5zBIQ%3D + uri: https://a13poandoc1inckboymhqhlk.z23.blob.storage.azure.net/811c3642-a50b-47dd-8e7e-2ca579679da9/79173f4f-485e-481a-93a0-d051274156b2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A54%3A14Z&ske=2024-11-06T16%3A54%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A06%3A18Z&sr=b&sp=r&sig=Bm%2Befses3N7F9cqjYMsg9cX%2FxGTCtltdlARp34Ai%2F6k%3D response: body: string: "\r\n", "value": "78"}, "736d4cfc-76ef-44d3-a6e1-923ba1fb1d8c": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "4bb43bc0-a08f-400e-8d72-42ffa221d358": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"fd109fdb-92c4-44fd-b9ba-1844b32a2424": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "a595f756-02e3-4739-bad3-b39706a10d24": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "268f082f-d403-43ed-a4a8-371f4abfe00a": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"7ccb295c-3ebc-47c9-ac04-e7045f1d2ea7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"736d4cfc-76ef-44d3-a6e1-923ba1fb1d8c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4bb43bc0-a08f-400e-8d72-42ffa221d358":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:42:29.822Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:42:29.822Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:58:27.469Z","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 connection: - keep-alive content-length: - - '1050' + - '1044' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:29 GMT + - Wed, 06 Nov 2024 09:58:27 GMT location: - - https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview + - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview mise-correlation-id: - - c99f72ff-2291-4776-a366-6db90d6e2ca3 + - 9021b289-56fe-4353-be4b-97dfa8b94e12 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054229Z-17f5d8496676bkwfhshcac428800000008gg000000009tnt + - 20241106T095827Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kruz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:30 GMT + - Wed, 06 Nov 2024 09:58:27 GMT mise-correlation-id: - - dde614db-7b29-4f11-a3e1-6576de805b6c + - 12748175-f7e9-401d-ae6b-8e2765d6fabb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054229Z-17f5d849667b4k641769x7f50c00000004hg000000004n0p + - 20241106T095827Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000krww x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,14 +203,14 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/0962ab16-2d6e-4914-a2e0-8591351199ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A30Z&ske=2024-10-16T12%3A42%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A30Z&sr=b&sp=r&sig=fmYKO15LkfTLu81S7LR8FLL50ayg2by7BhDXSTbwLmg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:52:30.7558173Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A28Z&sr=b&sp=r&sig=GmsuvsZMEWCbLoxom1plwMElk2Ehf4NQS9lLCjSwP4E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:28.5020321Z","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 @@ -220,15 +221,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:30 GMT + - Wed, 06 Nov 2024 09:58:28 GMT location: - - https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 879ecf76-a434-4627-b6f5-0d95b67d12d6 + - 426db562-a2e3-4eac-a0a2-b7c586978e00 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054230Z-165bfd566cf4c8jp0vyu991gv400000005ng00000000cvgr + - 20241106T095828Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000krxq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/0962ab16-2d6e-4914-a2e0-8591351199ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A31Z&sr=b&sp=r&sig=X%2B2TqADITlsZRvV1EHZy1sJax8jFycMkyKB8teY9ULs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:52:31.1499687Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A28Z&sr=b&sp=r&sig=GmsuvsZMEWCbLoxom1plwMElk2Ehf4NQS9lLCjSwP4E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:28.8776505Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:31 GMT + - Wed, 06 Nov 2024 09:58:28 GMT mise-correlation-id: - - 1b420e7c-6711-4c96-8968-1d36bdde2711 + - 0ba23ee3-3639-477a-9360-55516693ac7c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054230Z-165bfd566cf4k2zhgy89gpw6040000000940000000001wz2 + - 20241106T095828Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ks0k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,14 +300,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T21%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A31Z&sr=b&sp=r&sig=cPEYyB6A0cItRyoQPsunMSiZTHN%2FyNgXr2V6TBDqWx0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:31.5939042Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A29Z&ske=2024-11-07T01%3A58%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A29Z&sr=b&sp=r&sig=XDOQQI%2FFiCuDvFMePopg92FWN0bFqgoIta5y39cM1RA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:29.5206588Z","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 @@ -317,15 +318,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:31 GMT + - Wed, 06 Nov 2024 09:58:29 GMT location: - - https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - d2fc8224-7a34-41b2-bff4-002433ecae14 + - b2a06605-3a0d-4630-aad3-a0b904e56ebf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054231Z-17f5d849667w6jv7rkqk450w7c00000001t00000000093xm + - 20241106T095829Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ks1k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,96 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A31Z&sr=b&sp=r&sig=Y2eMXZsMVEEqZiWoKxC5xhtYJPyAen2ZXEUXBcRz3aQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:31.9648569Z","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 - connection: - - keep-alive - content-length: - - '568' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:31 GMT - mise-correlation-id: - - d3717727-a077-4741-ac8d-8236a6e76b19 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054231Z-165bfd566cfd2dxssq2e8pp1zc000000097g000000001hnb - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T21%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A37Z&sr=b&sp=r&sig=4Ghl6F3sNaL4u8DK6CX5%2FVMBgzCqHUI1nVY78kKtFds%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:37.260005Z","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 - connection: - - keep-alive - content-length: - - '569' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:37 GMT - mise-correlation-id: - - 43dc9c9f-52f1-4d29-ad6f-24b257287138 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054237Z-17f5d8496675cv7vvzee97tr8n00000009tg000000000zg5 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A42Z&ske=2024-10-16T12%3A42%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A42Z&sr=b&sp=r&sig=RhX7vG8UuLGyqroGFG0HW1rT8Gtf3KQmz3E%2FAo39cl4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:42.5939464Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A30Z&sr=b&sp=r&sig=CwqlfZHp%2B9PShdJUDOoye6sMbv68RoC3cMEnwzwDvPM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:30.3387842Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -445,13 +362,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:42 GMT + - Wed, 06 Nov 2024 09:58:30 GMT mise-correlation-id: - - ffba4f2f-8e40-4a37-a8b6-5eb11ea10564 + - 05c46c1e-b3fa-4660-9984-98a00a335f22 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054242Z-165bfd566cfzsxk8dkexzes4m400000007pg000000004tdd + - 20241106T095829Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ks3m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A47Z&sr=b&sp=r&sig=MTiaAb696NjHaBfs9IjGsNAKbyRyxTpRM%2Fcg6%2FIqiG0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:47.8727912Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A35Z&sr=b&sp=r&sig=wbYMCwDmYulb7%2B3E80nwwJ2wmTyBI8uCObVH1jfMNe0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:35.6603298Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:47 GMT + - Wed, 06 Nov 2024 09:58:35 GMT mise-correlation-id: - - 542d1cac-5430-4e8d-9144-bad1d2ee169f + - 299ff23e-9b52-4a5f-8740-6e825abaa2b0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054247Z-166cf497cd4v8snbtm724w4g2c00000007z000000000ca8n + - 20241106T095835Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ksrd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A53Z&sr=b&sp=r&sig=%2BE2ZG%2FiSljgEDtcKZnOXR%2FqTC44wG2eLCpZNg9pSfv8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:53.1864695Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A40Z&ske=2024-11-06T16%3A58%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A41Z&sr=b&sp=r&sig=FIOxXnYeTTIAxqfWGcq%2BmTEjffxquWOcXm%2FE6BNEYgo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:41.031428Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:53 GMT + - Wed, 06 Nov 2024 09:58:41 GMT mise-correlation-id: - - e3dd61a8-8097-4fb3-a982-c8b9ef863770 + - d2e29aa4-9c9e-44a7-abc1-6ca2655b752b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054252Z-18489d46dccggs4rh24eyxmvec00000007u000000000ad9c + - 20241106T095840Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ktb7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A42Z&ske=2024-10-16T12%3A42%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A58Z&sr=b&sp=r&sig=3CXAh99OTWelvvJMfJBwr2sUPDckZLUhGmiYnsJkleQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:58.5202101Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A29Z&ske=2024-11-07T01%3A58%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A46Z&sr=b&sp=r&sig=hY4mY58rCnZ517Lno21yZC%2BabekYrHohmrzemLEqFX4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:46.4407188Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -567,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:58 GMT + - Wed, 06 Nov 2024 09:58:46 GMT mise-correlation-id: - - 0ff8d2aa-af96-4c8e-b209-9a36430553f2 + - 47516480-ea99-46d0-9c8b-605dd7e6d836 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054258Z-166cf497cd4mqn5ksypuy7gvan0000000840000000001n1z + - 20241106T095846Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ktwn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -595,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A03Z&ske=2024-10-16T12%3A43%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A03Z&sr=b&sp=r&sig=oz%2FcdPAiddqtcXeHorFte0r4k2aDQ7K1gFVwJrbln1Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:03.9219253Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A51Z&sr=b&sp=r&sig=1CuO3wl53astfY9NcHu%2FAEPizx90MnuS%2F2MayxdHDHs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:51.7449357Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -609,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:03 GMT + - Wed, 06 Nov 2024 09:58:51 GMT mise-correlation-id: - - a3240c0d-e8ff-45c6-be55-c2518ba1236c + - 3ce571b1-69e4-4dcd-9e06-6d21fc23a1d9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054303Z-15484bdf457jvkjnektp2rx17000000002tg00000000bybn + - 20241106T095851Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kudp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -637,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A03Z&ske=2024-10-16T12%3A43%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A09Z&sr=b&sp=r&sig=uQx6lt6BQg4378sa5nmMVQSyfGd2xYLMW7nTntasB%2B8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:09.4083276Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A29Z&ske=2024-11-07T01%3A58%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A57Z&sr=b&sp=r&sig=MpsF3mNWGi2w%2B%2F4qbZHVmqpvRbZ84ZDlEYJiSfHi%2F9I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:57.0336984Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -651,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:09 GMT + - Wed, 06 Nov 2024 09:58:57 GMT mise-correlation-id: - - 9371b105-7a34-455a-88a6-8549e36e5fa3 + - 7865dec5-2a90-4828-9830-b58a86c2444f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054309Z-15484bdf457bt9vdd1e9rbvmpg000000028000000000euf7 + - 20241106T095856Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kuye x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -771,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T21%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A09Z&sr=b&sp=r&sig=Cg1%2FhCHgGjecEjlYWgRtkxCox2kIjoL0CG9QYTcv%2FHk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:09.958994Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A58Z&sr=b&sp=r&sig=aF4CqM%2FOOtChMZWVxA7sUkUHs%2B4yvgfdbc4uto1Wxsc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:08:58.2816642Z","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 connection: - keep-alive content-length: - - '559' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:09 GMT + - Wed, 06 Nov 2024 09:58:58 GMT location: - - https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 290f916f-6712-4661-987e-463fa289a7cc + - 24d12624-0749-484a-b5f4-511d6a319be0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054309Z-15484bdf457rtsfnfha0z70xv800000002k0000000001p2y + - 20241106T095857Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kuzg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T21%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A10Z&sr=b&sp=r&sig=g3YHzhtdydlSN1nL7b5Q3HxfTddNCiN9DJlL3Qbga%2Fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:10.3628357Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A58Z&sr=b&sp=r&sig=CoUoMshKtuxvH0m3bFnEggA6XtjhgNXLDZtRuEwL0Lo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:08:58.8931557Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -829,59 +746,17 @@ interactions: connection: - keep-alive content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:43:10 GMT - mise-correlation-id: - - a1562025-d5ec-4b39-ad02-94304fac0ad7 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054310Z-166cf497cd47w9bdc501r87meg00000004bg00000000n6vb - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A15Z&sr=b&sp=r&sig=57jZWlJym%2B0kureSl0j7ihFAnPiOUTRZgLT06Dx7S%2Fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:15.7601334Z","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 - connection: - - keep-alive - content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:15 GMT + - Wed, 06 Nov 2024 09:58:58 GMT mise-correlation-id: - - e2076a74-1b1e-4ce5-ac57-3fce4fd2ea93 + - 67d3c6bb-593b-458e-9449-f173b061ca77 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054315Z-15484bdf4575xp6m65z1ff0ptn00000002bg000000001s4b + - 20241106T095858Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kv3h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T21%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A21Z&sr=b&sp=r&sig=FYxlexjvSn3mPm3os1Au3JR5zfT1sYVMsRT7PIUR8R8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:21.101948Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A04Z&ske=2024-11-06T16%3A59%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A04Z&sr=b&sp=r&sig=qFeoZVBoLM7sT6dP7HCi1PIp0aP4b4ST8YX7FOlBU4U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:04.2188064Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:21 GMT + - Wed, 06 Nov 2024 09:59:04 GMT mise-correlation-id: - - e1cae661-e190-4794-8c3f-8def1a7d51c8 + - 17d42bc8-f4f7-4fc1-b9af-ab18fa88d7cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054320Z-165bfd566cf75gpsgsd9yyp22000000006h00000000035kt + - 20241106T095904Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kvn7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A26Z&sr=b&sp=r&sig=dz%2BI40eV3WjoN%2B5pjNF4itaBoNRSx5LBIne6HWngpzY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:26.394405Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A04Z&ske=2024-11-06T16%3A59%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A09Z&sr=b&sp=r&sig=Yt7caTPAhFOORILrMDjAJEb0ysypjQ2GNZQIyz0%2By9o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:09.5580352Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:26 GMT + - Wed, 06 Nov 2024 09:59:09 GMT mise-correlation-id: - - 314eea67-0917-468b-9593-7323b4d6687f + - f9ad66eb-7b34-4950-8137-3b1e27bd2cda strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054326Z-17f5d849667bqf6xbnv2zbvn8n00000009n00000000001mu + - 20241106T095909Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kw4f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A03Z&ske=2024-10-16T12%3A43%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A31Z&sr=b&sp=r&sig=Z9b%2BAJY32D6S4UiWuRm7MeHFK3yKORzaYQLjkcYvIw4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:31.7393382Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A14Z&sr=b&sp=r&sig=R6JFUpo3SM039fs4EOltuPCzgp%2B2G4helpEJKb5pMgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:14.8909585Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1001,13 +876,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:31 GMT + - Wed, 06 Nov 2024 09:59:14 GMT mise-correlation-id: - - 9720cc89-b38a-4603-a022-010d0e904344 + - 1141d26b-89ed-4c09-9ee2-a8ffdbc11ed3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054331Z-165bfd566cf75gpsgsd9yyp22000000006dg000000009rfg + - 20241106T095914Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kwnw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A36Z&sr=b&sp=r&sig=XJeOe3hgjZVI5w4iso8XNLUTONT%2FZFcVLuBKACnsNPI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:36.9878641Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A20Z&sr=b&sp=r&sig=5JRRKfUyh3b8xNDynVa7qlyjFMDQMtHOys7lq0r5PbA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:20.1715567Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1039,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:36 GMT + - Wed, 06 Nov 2024 09:59:20 GMT mise-correlation-id: - - 948a4556-cb1e-4e08-bfde-367af5badcca + - e294b14d-fb11-492d-96a4-6ce155d793f5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054336Z-17f5d849667l8zqnh8wn56gx4400000008ng000000000mn2 + - 20241106T095920Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kx68 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A42Z&sr=b&sp=r&sig=QdJBLbxfoEGWzaibghxHxYnMQGiMSeh54W3Sa77a7wA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:42.2440014Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A25Z&sr=b&sp=r&sig=NCkNWJrhXqq0zbCbmcNAi1PV8Rgra2Iw9xTKAsDrZ5g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:25.5571396Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1085,13 +960,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:42 GMT + - Wed, 06 Nov 2024 09:59:25 GMT mise-correlation-id: - - 62869994-7b15-493a-a6b1-540899539001 + - 0e773abc-12b4-4f75-aabe-139817b8e170 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054342Z-17f5d849667t9hx53vqernxx58000000087g000000006fhb + - 20241106T095925Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kxtq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T12%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A47Z&sr=b&sp=r&sig=LgQ54EP%2FuXdbMxuXpbLGJukX2RpgjJEzFVJGEGp3w5Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:47.6671917Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A30Z&sr=b&sp=r&sig=6TSe9sQZh2l4dzw5N%2Bk6ESJ22ZoAqQc0%2FwbkgXcwDBM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:30.8726159Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1123,17 +998,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Wed, 06 Nov 2024 09:59:30 GMT mise-correlation-id: - - 4b2a8304-2bfb-417b-9a21-9daf32343dfe + - d6e7ff6b-e90f-4061-bc39-29932849e581 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054347Z-18489d46dccg5n69wa1d0046r400000007fg000000004hbp + - 20241106T095930Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000ky8y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1151,13 +1026,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"7ccb295c-3ebc-47c9-ac04-e7045f1d2ea7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"736d4cfc-76ef-44d3-a6e1-923ba1fb1d8c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4bb43bc0-a08f-400e-8d72-42ffa221d358":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A47Z&sr=b&sp=r&sig=WyCNLCFDiqMHq9AM9FamLDeL77PLpasQmA7PejGkEYI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:47.9846005Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/0962ab16-2d6e-4914-a2e0-8591351199ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A47Z&sr=b&sp=r&sig=o9KjAEIdUg7k6WlcnZ%2F26S3SVNH1Hk6lrJUmOM4uOzs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:47.9848888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A47Z&sr=b&sp=r&sig=%2FLFri3GTs8dnevjyRjR%2Fm2ohtbSGEhi6B2BiDvri8Sk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:47.9849904Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:42:29.822Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:43.381Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A31Z&sr=b&sp=r&sig=NRZpPYeeOmmJx3tqm3bqZ%2B%2FW67Cag2pVpl1RvlvJ6HI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:31.2043538Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A31Z&sr=b&sp=r&sig=ngNrWN6ck7lWTAuIXvd6hSs6wO2HxZ6eouxoiWv2VoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:31.205083Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-07T01%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A31Z&sr=b&sp=r&sig=yvmbSHorNfp%2Bb%2FyXqFbGxUTFR8jUsTnjz%2BfzGFI0rAE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:31.2054125Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:26.179Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1166,17 +1041,17 @@ interactions: connection: - keep-alive content-length: - - '2770' + - '2767' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Wed, 06 Nov 2024 09:59:31 GMT mise-correlation-id: - - 9c4fa3dd-0363-4479-be78-c00d152c4f8f + - ea87e8be-2055-4cd3-9f4b-64970457834c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054347Z-166cf497cd48w6x2zuxa69f51n00000007z0000000009e41 + - 20241106T095931Z-1556595cbbc87tdkhC1BOM9hws00000006ng00000000kya8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1194,23 +1069,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:41:56.8091326Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:41:56.8091326Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.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":"2024-11-06T09:57:49.8633644Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:57:49.8633644Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Wed, 06 Nov 2024 09:59:33 GMT etag: - - '"c501f57c-0000-0200-0000-670f523b0000"' + - '"fa003b08-0000-0200-0000-672b3db50000"' expires: - '-1' pragma: @@ -1226,7 +1101,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 36DA0723DE6A443E97CD3169A7A21060 Ref B: CO6AA3150217009 Ref C: 2024-10-16T05:43:48Z' + - 'Ref A: 7240A7BFCCD34F72954FAA63F3270662 Ref B: MAA201060516037 Ref C: 2024-11-06T09:59:33Z' status: code: 200 message: OK @@ -1240,13 +1115,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"7ccb295c-3ebc-47c9-ac04-e7045f1d2ea7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"736d4cfc-76ef-44d3-a6e1-923ba1fb1d8c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4bb43bc0-a08f-400e-8d72-42ffa221d358":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A48Z&sr=b&sp=r&sig=FHEfTXoOqNzmCFTOwNs5qin93EhbWZ%2BpEcCKU6DdGbQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:48.8557416Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/0962ab16-2d6e-4914-a2e0-8591351199ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A48Z&sr=b&sp=r&sig=7vcOesWZq9otxRaw9LS0R3pFaZn0LXxkriBTbekuDUE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:48.8560224Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A31Z&ske=2024-10-16T12%3A42%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A48Z&sr=b&sp=r&sig=KrmTOVz8RVGXdO2zSOwY9Dr3G%2FYJ8Yc3YwIk5s%2FEKk0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:48.8561125Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:42:29.822Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:43.381Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A36Z&sr=b&sp=r&sig=fZ7JuCPjYnBv%2BLc1eK5vDObfAAKhdFTUlf3RvBBfXO8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:36.3177353Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A36Z&sr=b&sp=r&sig=G1Msg4D%2BCO9pZYpCh%2FoKwSLO15Z2xtK8LZhqbdky0zY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:36.318134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A36Z&sr=b&sp=r&sig=743hInCPqN8r3VWUGfPIKuha%2FYX6zOPNsD%2Btro%2FN1H0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:36.3182991Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:26.179Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1255,17 +1130,17 @@ interactions: connection: - keep-alive content-length: - - '2782' + - '2781' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:48 GMT + - Wed, 06 Nov 2024 09:59:36 GMT mise-correlation-id: - - 872f76f3-48de-4090-814b-f345c682075d + - a896e2bf-29fd-4fcf-b4ba-e29efbcec134 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054348Z-166cf497cd4xh8zq4d721105qg00000007s000000000hxk8 + - 20241106T095935Z-16bf8d9b4c7x9rmfhC1BOM2c9800000006c000000000eeqw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1283,23 +1158,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:41:56.8091326Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:41:56.8091326Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.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":"2024-11-06T09:57:49.8633644Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:57:49.8633644Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:49 GMT + - Wed, 06 Nov 2024 09:59:38 GMT etag: - - '"c501f57c-0000-0200-0000-670f523b0000"' + - '"fa003b08-0000-0200-0000-672b3db50000"' expires: - '-1' pragma: @@ -1315,7 +1190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 87655FB3B5FA48D39F832EB479AB196A Ref B: CO6AA3150219027 Ref C: 2024-10-16T05:43:49Z' + - 'Ref A: 24EAD1382E9A41EA8ADDB4E223EDF25E Ref B: MAA201060515045 Ref C: 2024-11-06T09:59:38Z' status: code: 200 message: OK @@ -1329,13 +1204,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5ec7ea6c-5b14-431f-a92e-b5f3082a8be3.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://7e52171d-74eb-4b75-aa6f-7d64d560c332.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"7ccb295c-3ebc-47c9-ac04-e7045f1d2ea7":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"736d4cfc-76ef-44d3-a6e1-923ba1fb1d8c":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"4bb43bc0-a08f-400e-8d72-42ffa221d358":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/749e6bfc-7b3f-4acb-a7ba-50d161530c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A42Z&ske=2024-10-16T12%3A42%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A49Z&sr=b&sp=r&sig=wHLA7APkPfJtKXz94X%2FXiAsS4G30y%2ByJpBHrFPpC73A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:49.7110521Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/0962ab16-2d6e-4914-a2e0-8591351199ca?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A42Z&ske=2024-10-16T12%3A42%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A49Z&sr=b&sp=r&sig=uAFptdY%2BkPNyThe19KXs%2Bb5TzrXiC9C3Z%2BOJx3x2t9I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:49.7113128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://bfszeabr37wtyyebhocyl3uv.z49.blob.storage.azure.net/6abcb37f-73e0-4dd3-8f77-92163fdd5ee1/d435f6d0-cd10-4c14-9cef-0fb0d1420b2e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A42Z&ske=2024-10-16T12%3A42%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A49Z&sr=b&sp=r&sig=JU%2BUg4s2ltaog2janb0R%2FlsulueDcrimdk2kGpH6gc0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:49.7113958Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:42:29.822Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:43.381Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fd109fdb-92c4-44fd-b9ba-1844b32a2424":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"a595f756-02e3-4739-bad3-b39706a10d24":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"268f082f-d403-43ed-a4a8-371f4abfe00a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/2177bf5f-be7e-4594-943d-bef0e8617e94?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A41Z&sr=b&sp=r&sig=Lv%2B3rf7wAjhnPRVJjfxvtmYb4UhJeyabEIexKTDDO28%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:41.1093918Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/a6078034-e682-4e21-b1ba-9b5e63842b4c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A41Z&sr=b&sp=r&sig=f9a7sbOYM%2B18IuuJ6Ouun82jOXGxAwcREFoPgbBK5FY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:41.1096282Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://ullsn9sgk39uzn2lgdot87v6.z25.blob.storage.azure.net/6f262d32-3d59-43d0-8e90-39d202f49d9e/0039ff19-1b9c-4342-b2ff-c1b682a6a103?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A28Z&ske=2024-11-06T16%3A58%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A41Z&sr=b&sp=r&sig=E5MG54otM7claEE98PsoRFz0fIP8Xyt7qWd0MiAGzOU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:41.1096926Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:27.469Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:26.179Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1344,17 +1219,17 @@ interactions: connection: - keep-alive content-length: - - '2790' + - '2774' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:49 GMT + - Wed, 06 Nov 2024 09:59:41 GMT mise-correlation-id: - - 7aa9cf4b-1c98-4d3c-a8f6-2ea9d7a4cdcf + - b5d22c6f-58fa-46a7-bb34-33badf1d46db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054349Z-166cf497cd4xh8zq4d721105qg00000007v000000000bpwz + - 20241106T095940Z-16bf8d9b4c74rffhhC1BOM0zgn000000064g00000000y6ss x-cache: - CONFIG_NOCACHE x-content-type-options: 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 413d64b34fe..943e9820068 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:44:04.2494504Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:44:04.2494504Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"92da5368-2b70-439a-914d-6795b702adc7.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":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:36 GMT + - Wed, 06 Nov 2024 10:01:59 GMT etag: - - '"c501a083-0000-0200-0000-670f52b80000"' + - '"fa002015-0000-0200-0000-672b3e8a0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4D665074203841B6BD46B7AE815BA26E Ref B: CO6AA3150220051 Ref C: 2024-10-16T05:44:36Z' + - 'Ref A: 0353FDACA1CD425D9F1B2808EF31A2C7 Ref B: MAA201060514051 Ref C: 2024-11-06T10:01:58Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:36 GMT + - Wed, 06 Nov 2024 10:02:02 GMT mise-correlation-id: - - 70ddf316-2c8e-4fbe-9c20-c3ddafabe8cc + - 9e248c32-d37b-4500-a583-d8e78401fc51 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054436Z-166cf497cd4xh8zq4d721105qg00000007u000000000dcg7 + - 20241106T100201Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0ru x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"34118856-8370-4941-a2b6-f883eee8b8fa": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "8c774b60-dc4c-416c-9b40-e6e221944877": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "35c7b595-3c9a-474a-a639-7d6c4a2f8942": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "f0c5b6b9-a234-46f7-a47f-a85b0aad0f57": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "d1241845-22df-41ed-95ac-972418ce4191": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:37.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:37.458Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:02.419Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:02.419Z","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 connection: - keep-alive content-length: - - '1052' + - '1046' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:37 GMT + - Wed, 06 Nov 2024 10:02:02 GMT location: - - https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview + - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-03-01-preview mise-correlation-id: - - c267b219-3438-4e56-8daa-2227fd34f3c7 + - 5c046141-7a55-4960-83bb-cf73f05bf4c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054437Z-166cf497cd4g2mz5b71exmq12g00000002pg0000000038aa + - 20241106T100202Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0ve x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:37 GMT + - Wed, 06 Nov 2024 10:02:02 GMT mise-correlation-id: - - 7cfc53c3-c037-41e1-bd83-4b673e6e6a07 + - fa816d2f-4961-4657-9912-5e24a9dfee50 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054437Z-166cf497cd4mqn5ksypuy7gvan00000008100000000095ah + - 20241106T100202Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0xu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A38Z&sr=b&sp=r&sig=i%2BjgBXCUGbCQLVqI%2B0oO6ZRSheauoS3SL9OvCvQUhK8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:54:38.506435Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A03Z&sr=b&sp=r&sig=K5tpmNEYDIA%2FiXD7RVZy%2Ff8SvCC%2BXmG7tGDYHVnxBh4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:03.4226511Z","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 connection: - keep-alive content-length: - - '574' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:38 GMT + - Wed, 06 Nov 2024 10:02:03 GMT location: - - https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - af430732-bade-4334-ac19-eca45df167c6 + - 18192ad4-7370-44df-8af7-1545a993c22b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054438Z-15484bdf4575xp6m65z1ff0ptn000000026000000000g0md + - 20241106T100203Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v0z9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A38Z&sr=b&sp=r&sig=i%2BjgBXCUGbCQLVqI%2B0oO6ZRSheauoS3SL9OvCvQUhK8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:54:38.8865824Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A03Z&sr=b&sp=r&sig=K5tpmNEYDIA%2FiXD7RVZy%2Ff8SvCC%2BXmG7tGDYHVnxBh4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:03.7376492Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '577' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:38 GMT + - Wed, 06 Nov 2024 10:02:03 GMT mise-correlation-id: - - 7e663dba-4d6b-48a8-8f8b-876e87bbe85d + - 599b3a96-5ece-4687-b9f7-92c42602da52 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054438Z-18489d46dcck852hghpv4950b000000007y00000000064zc + - 20241106T100203Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v11t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A40Z&sr=b&sp=r&sig=DwoiJG1lyMKlyUfO%2BSCndFpf%2BMNkxWySi2rBv2%2BtihA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:40.0793984Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A04Z&sr=b&sp=r&sig=tnbPoRc4pKtOMsMQiHyUZgkVJGXDALrD8e6WwL4PAoU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:04.2735858Z","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 connection: - keep-alive content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:40 GMT + - Wed, 06 Nov 2024 10:02:04 GMT location: - - https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 6a88c8ab-2729-49f5-828e-74b8de1dad05 + - 4d3bdc87-3631-41b0-8645-f14e4a65412a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054439Z-18489d46dccggs4rh24eyxmvec00000007u000000000agyz + - 20241106T100203Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v12x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T12%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A40Z&sr=b&sp=r&sig=0eIU%2BQw51BYBshGQh%2BXJEpM%2FAg%2FZqbeSVRl6WRqXYqg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:40.9138708Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A04Z&sr=b&sp=r&sig=J9gS7OjONrIlHONSvGkNDjWppclywUjps58waP%2FO%2Bgs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:04.5954888Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,59 +358,17 @@ interactions: connection: - keep-alive content-length: - - '576' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:44:40 GMT - mise-correlation-id: - - e51d6247-61ff-4ecf-8b55-fd490df676d9 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054440Z-15484bdf457rtsfnfha0z70xv800000002cg00000000h23r - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A46Z&sr=b&sp=r&sig=MnCI1Tb19DkdTV1BdL9l8gfPaTNZIWCZX1sNgMx3yXY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:46.3839405Z","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 - connection: - - keep-alive - content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:46 GMT + - Wed, 06 Nov 2024 10:02:04 GMT mise-correlation-id: - - 01808c23-15cb-41ce-9226-7e05a4be5608 + - cdf296d9-7ab7-4ac3-bcf6-185e58ae80dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054446Z-18489d46dcc6jcdlqqc3agq27c0000000810000000003dyd + - 20241106T100204Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v15r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A51Z&sr=b&sp=r&sig=32RUKSOSNT2ZdMaGTX8%2BPBwpe2hm8BAosAtrsk8WbiM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:51.7163882Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A09Z&sr=b&sp=r&sig=aeJPa0Oy3L6GZmsSNyG49zck%2FWr08WpSiydCWDmdUsQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:09.8594196Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -445,13 +404,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:51 GMT + - Wed, 06 Nov 2024 10:02:09 GMT mise-correlation-id: - - 04d2d547-0e5c-4710-91d8-2c112940bff8 + - b926000b-2ce7-4f8a-a915-d22ceb85a524 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054451Z-166cf497cd4jdw4g4y9hv6ku6n00000007s000000000kfmz + - 20241106T100209Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v1up x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A57Z&sr=b&sp=r&sig=ButVK1ONxaNctsuB2%2BC5Y8NAHx%2BPcxVFAS%2FH%2FGdV8P0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:57.0545615Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A15Z&sr=b&sp=r&sig=F42y57nCbLye7VWxoBm2FYI9VD5GYcUj2a7kL1pUooA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:15.1406911Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:57 GMT + - Wed, 06 Nov 2024 10:02:15 GMT mise-correlation-id: - - d9ec9c4b-6012-4667-ad6c-32f2e4590f67 + - 8cee52a6-9708-4874-a96f-bab1aee6dc85 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054456Z-18489d46dccfkdmbtzwpeeg8f800000007zg00000000c7v3 + - 20241106T100215Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v2me x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A02Z&sr=b&sp=r&sig=FwAJPrACljGJDwzT5TWUEnS1iil1%2B41zR%2BWPhFqtIBo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:02.8839786Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A20Z&sr=b&sp=r&sig=8x26KQbxfPdM1IIjDKAo4NA6S%2BMtldEB4kl5i%2BuG7No%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:20.4538411Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -529,13 +488,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:02 GMT + - Wed, 06 Nov 2024 10:02:20 GMT mise-correlation-id: - - dba168e7-4eb5-4ff3-bfb4-333cd6ef5928 + - ff46c108-0f75-43ca-922e-4857a1b228e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054502Z-18489d46dccp2df8e3m20gzz8w00000007ug000000009zu3 + - 20241106T100220Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v3d8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A08Z&sr=b&sp=r&sig=h8YMxQzcUvIZhhqeqCOcV8pDsfDtpqximkcJPy1iAfI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:08.2632079Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A25Z&sr=b&sp=r&sig=TCJ%2FcJGyhGqL129FlT%2BpoComK7uyRViUF1HH%2Fr%2B%2B34g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:25.7543641Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -567,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:08 GMT + - Wed, 06 Nov 2024 10:02:25 GMT mise-correlation-id: - - dfb92cb0-c85e-4327-916a-6deb6b88c5db + - 6d953f63-6091-45a9-a9c5-442883ca5117 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054508Z-166cf497cd4jqnrcydhdctbvm400000007w0000000000ves + - 20241106T100225Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v47k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +646,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A08Z&sr=b&sp=r&sig=vroogZqGtI1hmxp4HioAU53cu9wqodNJnVIMB6w6Res%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:08.6483372Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A26Z&sr=b&sp=r&sig=0SLUDFwW681YcBBtjqj7J5geS6kkKs6yC%2B2jYfJnAoo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:26.3565676Z","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 connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:08 GMT + - Wed, 06 Nov 2024 10:02:26 GMT location: - - https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 78cbfa73-0f2b-4420-b723-c31adeb9cc01 + - 11e40489-dfed-4841-bd16-cd6857419ce4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054508Z-15484bdf457rtsfnfha0z70xv800000002gg000000006gnd + - 20241106T100226Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v49c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,12 +690,54 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A09Z&sr=b&sp=r&sig=hK3T%2FakJ5hRMOYZRJQRlX8NfNyb2S52KyvK%2FE%2BC72b0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:09.0576806Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A26Z&sr=b&sp=r&sig=gqS2l6%2B4lGEqMFgWmcyg%2BrSH40GuvrpiYR%2BZ%2BWQfzlI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:26.6693451Z","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 + connection: + - keep-alive + content-length: + - '564' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 06 Nov 2024 10:02:26 GMT + mise-correlation-id: + - acf311c5-708a-4779-9f5d-d5478b0b835a + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241106T100226Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v4cg + 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.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + response: + body: + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A31Z&sr=b&sp=r&sig=Z2jxvotkK3s0XBg1W5Qr6DR0G3FJ%2Fowz%2BhVsg%2BQq3TQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:31.9458832Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -749,13 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:09 GMT + - Wed, 06 Nov 2024 10:02:32 GMT mise-correlation-id: - - d19e08e3-0c0a-4f8c-860a-5b75880ef4a9 + - e8bdc95b-7136-4e3d-a7c5-aecfffd1c7ee strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054508Z-166cf497cd4t2mlmt579burh8800000006yg000000009kvk + - 20241106T100231Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v56b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A14Z&sr=b&sp=r&sig=LfWBUGKa%2BsB0oagueDfT8Rk7nRjQwmtK9PC2OQz1wLw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:14.4273064Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A37Z&sr=b&sp=r&sig=TiL%2F47MQVk4PY1jLPpj4rhNEdyemUI5h6xm4aufGWpE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:37.2181146Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -791,13 +792,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:14 GMT + - Wed, 06 Nov 2024 10:02:37 GMT mise-correlation-id: - - c4000ac4-2276-4fe0-b103-8816cdc14dd4 + - aff34593-5f6d-46ca-9d33-f8253335e9e2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054514Z-166cf497cd4v8snbtm724w4g2c00000007xg00000000hx61 + - 20241106T100237Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v5v9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A19Z&sr=b&sp=r&sig=%2FGrdA4ATOn95gkC2bSgMBdQfxRrKVszu0Q%2FdAv66vps%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:19.7665726Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A42Z&sr=b&sp=r&sig=we5OWrsUYpf1FLrifB8fEsKH%2FjZij2%2F1HYpe4ZlPvq4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:42.5135462Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -833,13 +834,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:19 GMT + - Wed, 06 Nov 2024 10:02:42 GMT mise-correlation-id: - - ce127b95-8047-4439-9ee0-4dbabd0bb33c + - da4e7449-25fd-4d1d-873b-ea2b7a6e0d8f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054519Z-165bfd566cf626cbrvmzsprhfs000000072g000000003h2h + - 20241106T100242Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v6gk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A25Z&sr=b&sp=r&sig=4qqS9twPaKW%2B75jXQ1E6JFgH189SqUkI1oe2Hsfmt%2F0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:25.2851634Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A47Z&sr=b&sp=r&sig=5uPGQFujhiLJ9Si%2B1hDtP3oNE%2F83n%2BVl2B74T5JpLwQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:47.8318423Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:25 GMT + - Wed, 06 Nov 2024 10:02:47 GMT mise-correlation-id: - - 6c434127-4a6c-460c-b029-c09a2f3098f9 + - c5a1fe42-3f6b-4b28-a492-7d64ddcef06d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054524Z-165bfd566cf4c8jp0vyu991gv400000005u00000000029x0 + - 20241106T100247Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v78t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A31Z&sr=b&sp=r&sig=fbozCN6TB3E3hdXehmxM5zIbcgLGRp2uB%2BY3jBRJfQ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:31.0401182Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A53Z&sr=b&sp=r&sig=s9pOw%2FoctJwvTLwxvJkRZ5r2Eifn05zueM3Sjn%2Fs0Tc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:53.2091756Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:31 GMT + - Wed, 06 Nov 2024 10:02:53 GMT mise-correlation-id: - - e5036d14-6a38-4023-85ca-a7b540f2b653 + - b98e73c5-d602-4f7a-aee2-ce87281b6f49 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054530Z-165bfd566cfg77fdsxzeea5p7n00000009f0000000005a2q + - 20241106T100253Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v80f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A37Z&sr=b&sp=r&sig=ys6F4973tSMbFsid2AITonqC%2BBD3Bz9pIsmK%2FuOo7y8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:37.2745793Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A58Z&sr=b&sp=r&sig=c12mryo8Cy2deJHWPtx8SbuhEXEaWfR162IgUEybljA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:58.4914109Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -955,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:37 GMT + - Wed, 06 Nov 2024 10:02:58 GMT mise-correlation-id: - - 9624b676-4f13-47e1-a746-0a8328f98eb9 + - df8dfe42-1baa-4f85-8a0c-b5595903dbeb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054536Z-18489d46dcc4mwx2ddastu82g800000007tg000000006tct + - 20241106T100258Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v8rs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,13 +984,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests/create-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A37Z&sr=b&sp=r&sig=LQHyirr11xLRs1Ne4Qn%2Bodly9K47GdNl2BrdK28N%2B8I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:37.6296376Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A37Z&sr=b&sp=r&sig=vWAzWOGF9PzMS%2FETt%2FVeoYqzNd7NuC5uRS1KDQXvzcs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:37.6299349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A37Z&sr=b&sp=r&sig=pJp8TSgPrKASYaoB2XusZqv%2F9QAx28ELzPObtTJF%2BbU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:37.630018Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:37.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:37.01Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A58Z&sr=b&sp=r&sig=gj%2FUyMTbTr6sg1aGTpZg6UgkUgW2r4Xw2M5kwqosil4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:02:58.7657987Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A58Z&sr=b&sp=r&sig=ugFB8SCdkzSbM8sz%2BypL71vmH8ejjmyezFCptvcUS38%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:02:58.806326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A58Z&sr=b&sp=r&sig=bSQoGoHd04iCG8QtVAiPRFpiPiNr71hCNQamE846Ni0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:02:58.806424Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:02.419Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:56.759Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -998,17 +999,17 @@ interactions: connection: - keep-alive content-length: - - '2776' + - '2762' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:37 GMT + - Wed, 06 Nov 2024 10:02:58 GMT mise-correlation-id: - - 857be3c5-2084-465e-b2ca-c5d80054a4ae + - b52dd6c4-474d-4a3b-bff2-2f7d05b15163 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054537Z-15484bdf457bt9vdd1e9rbvmpg00000002ag0000000093yq + - 20241106T100258Z-16bf8d9b4c7r848jhC1BOMdr7n00000006ag00000001v8st x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1026,23 +1027,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:44:04.2494504Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:44:04.2494504Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"92da5368-2b70-439a-914d-6795b702adc7.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":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:39 GMT + - Wed, 06 Nov 2024 10:03:01 GMT etag: - - '"c501a083-0000-0200-0000-670f52b80000"' + - '"fa002015-0000-0200-0000-672b3e8a0000"' expires: - '-1' pragma: @@ -1058,7 +1059,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5DFD9EEFDF00476AB1376995DDE0DE09 Ref B: CO6AA3150218009 Ref C: 2024-10-16T05:45:38Z' + - 'Ref A: 3F86182FC8FF415EA01FE201A9E942D0 Ref B: MAA201060516045 Ref C: 2024-11-06T10:03:00Z' status: code: 200 message: OK @@ -1072,13 +1073,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=5DqMyP2KfSxuBpLm4C1eJFFQ7IS2c79yORrT%2B1iz%2FQM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:39.8599855Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=5YupvZB9bwOsCVdDe%2Bu%2FF648kYGtIoAnhhx05X5WpU0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.8602243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=bSzpb%2BZ%2F%2Fre8eoYFIa9EWt%2B9iieff5zMpeMxRj%2FR7jw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.8603078Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:37.458Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:37.01Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A03Z&sr=b&sp=r&sig=GyjTAFdFII2i88UjPxd7pGN68z6pSdSj3POu6E0Pem4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:03.3126107Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A03Z&sr=b&sp=r&sig=8dKnh4%2FqWPna4x9UNhPyPFMpc6W%2FYFP2zOII0om%2FXoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:03.3129242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A03Z&sr=b&sp=r&sig=Ks1K2k62yDpvu9AOc9FDxMWjWOJh1A%2FZBpwMmraIlRo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:03.3130461Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"create-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:02.419Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:56.759Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1087,17 +1088,17 @@ interactions: connection: - keep-alive content-length: - - '2795' + - '2780' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:39 GMT + - Wed, 06 Nov 2024 10:03:03 GMT mise-correlation-id: - - e5d726d4-e618-4810-8dd0-176875771eb5 + - 82da35f8-68db-48a5-b401-b532b77bfb80 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054539Z-18489d46dcc2nx5gu4q8t6hd2g00000007rg00000000fyh0 + - 20241106T100302Z-16998b5679fgq548hC1MAAaz340000000630000000003kat x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1115,23 +1116,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:44:04.2494504Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:44:04.2494504Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"92da5368-2b70-439a-914d-6795b702adc7.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":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:40 GMT + - Wed, 06 Nov 2024 10:03:04 GMT etag: - - '"c501a083-0000-0200-0000-670f52b80000"' + - '"fa002015-0000-0200-0000-672b3e8a0000"' expires: - '-1' pragma: @@ -1147,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 208659F7D32D4AA4932F9493F153AFCE Ref B: CO6AA3150220011 Ref C: 2024-10-16T05:45:40Z' + - 'Ref A: 8487F463E68E4310A6E234C08E1DEC10 Ref B: MAA201060513033 Ref C: 2024-11-06T10:03:04Z' status: code: 200 message: OK @@ -1161,9 +1162,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1176,15 +1177,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:45:40 GMT + - Wed, 06 Nov 2024 10:03:07 GMT mise-correlation-id: - - e51d2d53-7180-4a93-8d9a-f1ac74a81f07 + - 3e609ffe-965f-4239-899e-aa5e6aa7bcbf strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054540Z-166cf497cd4q6m55tfpt35bu6000000007tg00000000cfbr + - 20241106T100307Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9gt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1210,31 +1211,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A42Z&sr=b&sp=r&sig=Yv3wdxwZlIuhaNGw6%2Ff5rWOB%2FfmUqKV29gAuUicjj2A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:42.7481156Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A42Z&sr=b&sp=r&sig=8cVRQndpLPxZ4LiGWlxhNVJoVk8TLYxBXlUW3l4flz0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:42.7472756Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A42Z&sr=b&sp=r&sig=KV6tuek3Q0Uq0k30XyEA0x9EJBH2tOHL8%2FuSga3rHvA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:42.7484726Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A42Z&sr=b&sp=r&sig=SogcNA5l7tkhYOlvGKcWkGCNZBx5khY5R0OrjBVxUkM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:42.7488097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A42Z&sr=b&sp=r&sig=aP4cLzdpld%2Bk2D5p2YVoABiwjwA8AMi4ZRbQA%2BHIwkI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:42.7490487Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A42Z&se=2024-10-16T06%3A45%3A42Z&sr=c&sp=rl&sig=DUKeeVW8hD3JoRFBABNzCOCB4X%2BsEVJbzXsOhZRNzMs%3D","expireDateTime":"2024-10-16T06:45:42.7492861Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"ACCEPTED","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:42.682Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=dnh%2FCtmjO%2B6otIojw0G2uyzteZO%2FGLwDBncE6gQL2AM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.389018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=EIabpyjY1pBZVh3E%2F6YrPEtIwPzKeVqm8a7EhQ5NWAI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:09.3885606Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=hxYmO%2BJOu8aDP7dwx5yJqGkAN%2BFY7XDUeVjb6FssV3E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.3891426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=sDpiHVM%2B3n5LdfQ2hmCDOdacCkNMf8%2FI1CmDnsRWLok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.3893099Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=RDOzVC%2BCuwYupgXsyWZr4w0iNzQaj4qCNIGDHUv8au0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.3894614Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A09Z&se=2024-11-06T11%3A03%3A09Z&sr=c&sp=rl&sig=KZ8Oew%2B0FoHvrw9%2FR8I9hix7qwOjk7gSNQUqg7oID3c%3D","expireDateTime":"2024-11-06T11:03:09.3896248Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"ACCEPTED","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.293Z","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 connection: - keep-alive content-length: - - '4916' + - '4919' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:43 GMT + - Wed, 06 Nov 2024 10:03:09 GMT location: - - https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2022-11-01 + - https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 12f7225c-3301-4c62-aa7d-fd19e1efce91 + - f5cf2c1a-9fc7-41b2-b11a-cb513a9c0554 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054540Z-166cf497cd4t2mlmt579burh8800000006xg00000000by5a + - 20241106T100307Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9hd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1252,12 +1253,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=aUNHgVHXdKEtiU8cNI6tQ69Jro%2B9w%2BbEcgo%2FALjLchg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2507798Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=5pqa7jlsTWonsvYxR3fp5kDRfznPyNX9ht3htz2Y9%2FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:44.250456Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=r7g9RlgkWUhj1r37ZcXrEZ0clU2e685f6et0vXPzV7Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2509826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=54skQzg0WTjkqiV%2FE8VZQ0GudJVJL2w7%2Ff8Rihobiz4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2511689Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=MQB4rqLyLhpS%2BPr3f%2FFk%2FClY30rEnU%2F3C88Z5aQXUt4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2513743Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A44Z&se=2024-10-16T06%3A45%3A44Z&sr=c&sp=rl&sig=iPhAw76eyZh1hxbqPRPKTY%2BDIAiNEdS5ILfRtmNTtdk%3D","expireDateTime":"2024-10-16T06:45:44.2516851Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=ay2S91Uvf9WUijalG37iUdEr5%2FEq57uClCuP2g8kQ0c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8499135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=vXe72t2wnR8Fw9AJY8OeHNyDqPFOnZuqdL58Srhv0nM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:09.8494911Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=HmC3d61TEPV5TmQMXv6eBoQoiIDPiTjqcS0z6obI0uM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8500992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=Nt7pQPijjlvr%2FwuISzqcx4crfrSosW%2FfeNV7EoMRDqI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8502528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A09Z&sr=b&sp=r&sig=vfsQat5kvINrmoTImm0PJYQemQI868bcVeCj2oGHx5g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:09.8504076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A09Z&se=2024-11-06T11%3A03%3A09Z&sr=c&sp=rl&sig=jp7qYkKxSD%2FNob0SNu%2FBdCD7nwiaYP6oSaBEdwpnPHo%3D","expireDateTime":"2024-11-06T11:03:09.8505277Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"NOTSTARTED","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.665Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1266,17 +1267,17 @@ interactions: connection: - keep-alive content-length: - - '4972' + - '4953' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:44 GMT + - Wed, 06 Nov 2024 10:03:09 GMT mise-correlation-id: - - c495956d-9263-40bb-9fc2-38e7dfb0c4a1 + - 9f58bd1d-85a6-4247-a1de-819ee975e405 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054544Z-15484bdf4576j5mtr8k4ftgbd400000002qg00000000k3tg + - 20241106T100309Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9m0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1294,12 +1295,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=NWrGUXH5w7t0leeMCT24QADJ%2FLhRX04KbpjZI39xOPg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.6319059Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=O6cSpCWNS82TesnTnNgPDTJG9wOw%2B4L8HHUUNAnA7qw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:49.6314587Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=TC73oVmNLCiRV4vIlyYeN9ncWFvzCAfPBLjloRcZ1YQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.6320406Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=WlNp8HfSOqHE6H6EF0bcrpR%2FP7qb9NhiTM9TMcXxHiM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.6321766Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=FyOMYKddLwvclGCykv%2BiqBYZf7PE%2Fx1PeQVS9xRWRfQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.632314Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A49Z&se=2024-10-16T06%3A45%3A49Z&sr=c&sp=rl&sig=4uzOjeuMM1pIij5vjQK72%2FP9n2hoG%2B%2BdgWdiMmu67p8%3D","expireDateTime":"2024-10-16T06:45:49.6324435Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=BlvfNIaROAvwXGQZ2u6B7Eoq5Xryr160ogCe8M9TKcY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.1541568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=uV%2FNFbbK6o9ooFnY2QQQkGWmOf15h1Uin6S8aQn2%2BMU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:15.1534584Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=WjpUJ2gkBsu5aOUqIHT1%2FNnYB%2BLZrmDciJG9uhcDKoE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.1543771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=6G%2F351NvfMxqpZ28v5xG6ViG0DnuGK06jf2lvKG2fBg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.154591Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=%2Bk4dUbXboUr%2FpJVgkTyXyz5IvggVbWY%2BNHwj8uBQhZQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.1548201Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A15Z&se=2024-11-06T11%3A03%3A15Z&sr=c&sp=rl&sig=dr0YtZCf4z5x0WLxUjCR7NYhU5mowx7iNxJCcPmoUEo%3D","expireDateTime":"2024-11-06T11:03:15.1550302Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1308,17 +1309,17 @@ interactions: connection: - keep-alive content-length: - - '4966' + - '4960' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:49 GMT + - Wed, 06 Nov 2024 10:03:15 GMT mise-correlation-id: - - b95abe6b-f300-4a42-a76d-643b3edbc722 + - 43bf73cb-06b0-4d6f-a05f-f556f0858f76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054549Z-18489d46dccfkdmbtzwpeeg8f800000007z000000000e3v8 + - 20241106T100314Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9sd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1336,12 +1337,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=DG4whaCYds%2Fs7j9GKcxZyBxeSwS1bXGChlKko9HKrAQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.8757305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=3mLHuySp3lFYkj65ZdU1Yk%2F3Rmf1o95KBLK8DX3USfE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:54.875358Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=XHTvGKPZjOjiewgRYT5py%2FKFSgVIF%2BqNonbhyenXCY0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.8758763Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=ndblQb9hK6sUXUtPZnWBwQYUgaw67UGIl1WoXGpyxTo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.8760144Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=bC%2BN9Vl5n1uvZuNrlruw1m3njrLv%2FjltrCM9xz6snJw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.8761535Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A54Z&se=2024-10-16T06%3A45%3A54Z&sr=c&sp=rl&sig=Qa9%2BpPBUDBvubuT4mRDeTuhVrWUQoV2SWfsYIV%2FbtmA%3D","expireDateTime":"2024-10-16T06:45:54.8762955Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=IZM6paodiBbTv7Cv1CKrSNw%2BxuLx04xLrPeePaW65Ls%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.471408Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=EfJk2qLqkW1L99rCqJBm%2BeBHr1NSlbGtgnEePTPvzzE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:20.4708489Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=2hA55ASwm%2B8XZ3zmiRQfkwoMIYIVfdz73gbQcfD4zDQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.4716202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=xUHahfbAdFqFFhPyZZ6%2Fur%2FCZF%2FCa1PnjuyDikjUwVU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.4718399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A20Z&sr=b&sp=r&sig=Qr%2BJTF%2B54qIwDfsMWG0K5fDVeZM0JWMwN5AVTbrCYR8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:20.4720477Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A20Z&se=2024-11-06T11%3A03%3A20Z&sr=c&sp=rl&sig=VX7tvRIa4rOR5KwvRDU8LYt78tv6OHs8wHMERhwN27M%3D","expireDateTime":"2024-11-06T11:03:20.4722302Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1350,17 +1351,17 @@ interactions: connection: - keep-alive content-length: - - '4966' + - '4960' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:54 GMT + - Wed, 06 Nov 2024 10:03:20 GMT mise-correlation-id: - - 64e97647-3b56-4496-ad25-d8acd6ab3944 + - cbb758df-d0f5-4ec5-ab34-84bbd30e5eae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054554Z-18489d46dccfp7rz6a82yt7pbw00000007wg000000007zcf + - 20241106T100320Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000f9y9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1378,12 +1379,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=Sn664sjie7RvP74t4QppaPXp%2BVeom5U0ZvbjaTjti0g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3367346Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=67YL%2FufNi1%2F0W74fQQDw1kb0JeUfUuRiO4Iqugq%2FUk4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:00.2627805Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=ZW40GuNfOslS8lCVypG27ZDsCjZVPMK8WR28FqP6fU0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3368759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=d6HeCFlZexUDrUFjVLWZJ8OSBVzrlVRJzf1tEDYenTQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3370082Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=CumNk%2B6hKWCqE%2FAWgrrCvZbfrbkouzPdDipC%2Fr7uZ%2Bo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3371384Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A00Z&se=2024-10-16T06%3A46%3A00Z&sr=c&sp=rl&sig=F0xiazMLZHxJmUxL0kaLvvmEG7cPRHpihDo14hfy83Y%3D","expireDateTime":"2024-10-16T06:46:00.3372675Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=2ceLJJ1vcRk8rPJWN6AfG5jwmt%2BzlGXYdDV4R0NMMrw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7889664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=kY1X1P8%2Fva%2FP6jAGRza9wFapiveAGuu%2F0VQaju8H1Lk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:25.7886262Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=00bY4wWGt74ImKeEpE4Wqz7zauTJ1T%2F1H%2FD%2BxXB9VEQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7890652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=Y5B6FrHW%2BXoodtuVismrFLGpA1FSxrECif3JR8%2BQ6ok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7891633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A25Z&sr=b&sp=r&sig=guz4kWcv9ahTliwcPCO3oSnN0%2BpWXfMgylobwVwpkTw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:25.7892584Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A25Z&se=2024-11-06T11%3A03%3A25Z&sr=c&sp=rl&sig=rn0ZkoVoL4udn9TBalhlLGXWdnzHvlEowAjV6AvsOCA%3D","expireDateTime":"2024-11-06T11:03:25.7893521Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1392,17 +1393,17 @@ interactions: connection: - keep-alive content-length: - - '4967' + - '4965' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:00 GMT + - Wed, 06 Nov 2024 10:03:25 GMT mise-correlation-id: - - 5e1c7a80-5e95-449f-93cd-219293d582a1 + - f6bb1e15-fd94-435c-a4c5-855fecbe5717 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054600Z-166cf497cd4t2mlmt579burh88000000070g0000000048em + - 20241106T100325Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fa3a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1420,12 +1421,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=eA6J1nrQB%2FrOzMstmQAKMbT1jT3PkbikL27r%2Bqt8Bwg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.5521821Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=ZPiCxUF127me8mcU4PjFDFZpVUkmJ4dUlZGozU%2Bpx00%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:05.551926Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=wx3%2F8dSh6knK7lKOqVg1meOqnU8GO6wAQlNJJkZjU3U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.5522606Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=vXHcWJYgdwHMw9cxzIDcMKeBMbBOUvOfyY5to6y1O50%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.5523386Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=eVH%2BRAjhH0I%2BgWGzNKVfFhIMP%2Fi4PXX1SJ8IsQLfno4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.5524157Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A05Z&se=2024-10-16T06%3A46%3A05Z&sr=c&sp=rl&sig=PSYL6tdpVKOcTYqX%2FzUyt5ybWgLjXgmzz8fZWVi5teo%3D","expireDateTime":"2024-10-16T06:46:05.5524911Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=d1H3%2BmRDHymc2hQXAOuo4b9eIuPjFnARFTipg1aL2PY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1262414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=krGbxV0coUROAXL%2BsP6oTyQc4pGKEjtBfvsFiGT%2FuDA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:31.1257261Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=%2B%2FWNOIBvqbs0iz2V%2Fh%2FjzHID2aemXTxeH5DiTwo%2B6S4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1264345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=9JOV3IVxWzwlZS0SGLwSl7593a9Pb8gXGMeCTeb1QMI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1266484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A31Z&sr=b&sp=r&sig=Ql7l8dhJg1cf4%2F9jejTrEJr2STW5fui6TQApTF44mWg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:31.1268374Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A31Z&se=2024-11-06T11%3A03%3A31Z&sr=c&sp=rl&sig=SYuZsUHeo1Wn3VSp57suEYiqy4Nf9hUJdkDedwlyM9w%3D","expireDateTime":"2024-11-06T11:03:31.1270175Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1434,17 +1435,17 @@ interactions: connection: - keep-alive content-length: - - '4966' + - '4963' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:05 GMT + - Wed, 06 Nov 2024 10:03:31 GMT mise-correlation-id: - - 9511b3a9-b044-4fdc-85dd-7b4e0c5aa64e + - dcf4c258-abc3-46f4-bacd-7d699e561f69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054605Z-17f5d849667pkml2n4g8rmfnnc0000000600000000001eeq + - 20241106T100330Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fa94 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1462,12 +1463,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A10Z&sr=b&sp=r&sig=uSZhOqslaJ6jYnzCjrG7A0JHUx36rWtYtx6C3kaevzI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:10.8511418Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A10Z&sr=b&sp=r&sig=2O0tBITADzjzTNpHdiAy0KHFkVOetxF8lnHQhAGrNLs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:10.8508239Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A10Z&sr=b&sp=r&sig=50dfM8Y2KEn3Xq29AIco3BeW2N8A5IRk9SRG7PxA8Hc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:10.8512438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A10Z&sr=b&sp=r&sig=R4a3SLkY87o0PDgItdWjJH4RjkDVyVLf3fpXVCil9gE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:10.8513418Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A10Z&sr=b&sp=r&sig=AUh2gf%2F0IySjCBBObqAZQab73OJoLt3Kzj0vUjX74Rw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:10.8514357Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A10Z&se=2024-10-16T06%3A46%3A10Z&sr=c&sp=rl&sig=dGA%2FwNojWOMFJTNMC%2B2S01jWpvlxB1aQFsDFCQmCkeQ%3D","expireDateTime":"2024-10-16T06:46:10.8515301Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=W4MIO8j5XCClAc7jqgF0UCMeIR9pTD0zsDV7kUjMo34%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.4498913Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=1C0AL35txoQxYVx7d8w2xrqdwygxJXnee9%2F8xcxtK%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:36.4494664Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=jDJn4CSW45p7AoagnFGUeeb7h4wJrvqYEQTKqUQIt4Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.450068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=MNn1uCcIPS%2FkVs%2F6jRk%2FAenIMhtOjBhjqdwMJMOSB58%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.4502672Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A36Z&sr=b&sp=r&sig=oOFUrchbMVg1OjtHUGeACRO1SGUvPY5%2BqguQipEgPJ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:36.4504476Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A36Z&se=2024-11-06T11%3A03%3A36Z&sr=c&sp=rl&sig=OUVYgsQJzBRtEz6vAmXDKsnYxwYHMf4FBMq1kKeCAKg%3D","expireDateTime":"2024-11-06T11:03:36.450615Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1476,17 +1477,17 @@ interactions: connection: - keep-alive content-length: - - '4957' + - '4955' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:10 GMT + - Wed, 06 Nov 2024 10:03:36 GMT mise-correlation-id: - - 07cbbca4-d988-4c2d-a16d-7dc0142630d9 + - 9547bf94-fc2c-4a0c-8881-6dfa005e677e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054610Z-165bfd566cfmx44zfm4kr5hm6n000000031g00000000csa4 + - 20241106T100336Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fag5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1504,12 +1505,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=rGxJzBpQkJgnvNv46i1aGrVI3l3Cd1FCpB%2Blyq8T3nY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.2235896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=owkTjAtX7E3IpGjjL2ZaDgCv%2BpLAKbXWezMv8GP0k4s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:16.2231523Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=K7N%2FkxP40yE86CSX0MkPctOYoqLfYE6LkCjIRD5xeF8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.2237911Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=5Wrn%2Bmf80zumZ8EQpI2%2FxmpPUhb64oDRQdPVdPWuggc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.2239681Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=iFql%2F%2BW%2Bdw9YIxtQOyVSI%2BC%2FK71ZJnF%2FIfHxmWAcI6E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.2242945Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A16Z&se=2024-10-16T06%3A46%3A16Z&sr=c&sp=rl&sig=RT8qbm8LZsWa%2FONWIhtijTv8Wzk2p94InG06x1WLaU0%3D","expireDateTime":"2024-10-16T06:46:16.2244839Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=jXXICmyKIy2Yum3jlbN4l2J25eJgaFlRJKEwVQjorWI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0058461Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=Fi5rNAmUP4c%2B%2FFtayt4mn%2Bn6ozNb7NLH7AAXeP%2BL5ck%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:42.005587Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=QtlvMwhS388HUSMQQxU5VHadYychWaSNUBlCskDKYzY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0059471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=FDRUOv8nZrqmg2SnW0q8r0x%2BzHRZ05QS12Cq0GeqSuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0060376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A42Z&sr=b&sp=r&sig=Sz8xw4FL9fueCwasAHQTfQV3qBjr%2B%2FXNHYOZz41D5dg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:42.0061256Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A42Z&se=2024-11-06T11%3A03%3A42Z&sr=c&sp=rl&sig=KWwSLJz0kqpSHsjOiAu%2Fip%2BlEN046joOIKyrBhuEMOk%3D","expireDateTime":"2024-11-06T11:03:42.0062193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1518,17 +1519,17 @@ interactions: connection: - keep-alive content-length: - - '4975' + - '4962' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:16 GMT + - Wed, 06 Nov 2024 10:03:42 GMT mise-correlation-id: - - cc24985f-8e75-4259-bc4d-78494e5740b7 + - e4b5d3da-9424-4d46-b968-27a05226f334 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054615Z-166cf497cd4mqn5ksypuy7gvan00000007yg00000000epen + - 20241106T100341Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000farn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1546,12 +1547,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=MYwOCyAhAfQF5IotOHSEdbGrqwtt3gNXFkwFtDsZXao%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.5257228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=SjfN3r8MGRiWtEj9jD0GXLm09hqv7PLBrS1JFrErf2k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:21.5254691Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=5keToB51nWnwLXCS%2BL00ZYqlq9F13fT461Qe%2B4rkxSc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.5258057Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=nX3eU03R2kO%2Bmc4dU9BmJPMtgvasNPHvU5IU4j%2FxiMA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.5259039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=ICP6q3UgeIeT2AVAJMTI8NahbXEoWSlvxz6Y43NY9%2B0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.5259931Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A21Z&se=2024-10-16T06%3A46%3A21Z&sr=c&sp=rl&sig=k7hB00sIocHgpRQfRuPTRnCv4jV0ZI09DCvGL72mgKQ%3D","expireDateTime":"2024-10-16T06:46:21.5260731Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=H7VOXXCzJ0jnj4MhbNh22ppacqbxUHomegjDB4i9En4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.3540167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=v8JdLp5fpAz39q%2B8UPViEV%2FBJnqxYQTbkpm7MXc6PiI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:47.3537139Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=CrGQokfpAGPPNkI0sMEMP0GwvBc1jkuRhFCUEahs%2F%2BE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.3541324Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=v6dtIq6PtiLoLao7EI0gvabffyfTcLyOrBWr09pMtIA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.354231Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A47Z&sr=b&sp=r&sig=%2B8sn2YB78EzU%2F02sriJJPY%2F%2BIalOz12DCNLJ%2BlkhP34%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:47.354323Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A47Z&se=2024-11-06T11%3A03%3A47Z&sr=c&sp=rl&sig=SSdSrSompLmdYCm2StyxdpalA6OviKnoyBIfFttUV1o%3D","expireDateTime":"2024-11-06T11:03:47.3544109Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:09.895Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1564,13 +1565,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:21 GMT + - Wed, 06 Nov 2024 10:03:47 GMT mise-correlation-id: - - eaa80991-a7cc-47fd-a74e-d5c5198fb756 + - 06b91d9b-f5c6-4847-81a2-f25ee62ab6a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054621Z-166cf497cd4z4rvk0cprvnxxh000000007vg00000000d07a + - 20241106T100347Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fawn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1588,12 +1589,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A26Z&sr=b&sp=r&sig=xcD2FC6r4DH497e%2F2MTB3E%2Blm6jSp3UcHqoFW3PX1vc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:26.9122623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A26Z&sr=b&sp=r&sig=h2T7eNQSnLESqiIGRuj2y2jZVy1snLYGhPMY9zi%2BHzg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:26.9119518Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A26Z&sr=b&sp=r&sig=WVhcDAmm9Vq7eAHDyE1Q1iUDJ8uAVo7scInl7r4Ni1A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:26.912476Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A26Z&sr=b&sp=r&sig=dP3N0dqCYCpcYj7oE%2FY13Al4SLVl4NZsL3F5cgqMPfY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:26.9127066Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A26Z&sr=b&sp=r&sig=%2FnU6YBj4cNhUNvieGVobRdww4EsW%2B5A52snVJjlunNc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:26.9128302Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A26Z&se=2024-10-16T06%3A46%3A26Z&sr=c&sp=rl&sig=IcQ0PxL64j0DsQAwEIyKx9VgqHiSccy%2B%2BMu1A5o%2BhaQ%3D","expireDateTime":"2024-10-16T06:46:26.9129732Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=%2Fab6h0X03RwYuQqWtGlsigGS0ksHUA8VHWnn7%2ByByQM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.6530891Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=42nqmUzbvHIhvI0fLApUGautN5WhbyGTa20QAlpxZ%2Fo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:52.652661Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=c5xnlGQC53J0hw5g7sNdhaX25PnSY3vxjhHxqPmFL%2FQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.6531663Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=72Bn2ekbJ5lvuYfwsiGqYxwGJzJIqSH1oCavNDmPCQU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.6532433Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A52Z&sr=b&sp=r&sig=b0sLmAJ2vEwbp7IVEbLp8Z%2FsR5OedwvyYDUYq9Gad9k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:52.653329Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A52Z&se=2024-11-06T11%3A03%3A52Z&sr=c&sp=rl&sig=qZPmFqD3c5ZI8N9qM%2B3Jc7Gsm9k7fzuFJ6OA8i%2BBf%2Fg%3D","expireDateTime":"2024-11-06T11:03:52.6534029Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"CONFIGURING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:49.167Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1602,17 +1603,17 @@ interactions: connection: - keep-alive content-length: - - '4968' + - '4958' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:26 GMT + - Wed, 06 Nov 2024 10:03:52 GMT mise-correlation-id: - - 3e7c1a24-bf28-4a59-af9c-5b64780c0316 + - 6b79cec5-4792-4229-8a52-592e21546479 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054626Z-166cf497cd47w9bdc501r87meg00000004kg0000000004c3 + - 20241106T100352Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fb47 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1630,12 +1631,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=Z0YN%2FDU8kFpxEJwllgDtna5biEn885XOJI1hBEyVKoo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.2860568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=cZgAqEYFO48xb19rfKzLVGIV9vbFf1jwyDF9mt%2BseTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:32.2857704Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=axXtweybMobIgeTRDho%2BcVJTKoq0WB9r3vgi3UExfyA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.2861648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=YgPXP0myOcetG%2F0OV1xePYQUIMH0O2%2BabnMtgwWve58%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.2862235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=6q82E9l2uukD3hRgrfAyjKawZ95iedFCLa8j%2F6IU5Hc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.2862743Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A32Z&se=2024-10-16T06%3A46%3A32Z&sr=c&sp=rl&sig=6RB4EoFaHE3TvYn%2FJYLkHSpvTJHEtXozbGbSfQvrUjY%3D","expireDateTime":"2024-10-16T06:46:32.2863215Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.161Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=CEbYXoLx69DW6uzTE6DHWnWknC7ewxfti3DmQtgMUPU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0098387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=Y5%2FzRIjXKfgiP%2FLR5tEu6d%2BPjM2koNJs2f852g4HPfc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:58.0093423Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=mlu9hutlrpYV2%2B%2Bv2wgpA94XHQS7b1wPSqroNx7KKIQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0100388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=R0ArELagvgWTGmwu2gUsFnOgvPJJIlgDIP%2BXS5hTNno%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0102186Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A58Z&sr=b&sp=r&sig=w6JvIvUnWvSj6vBumPWxVViTTWSOG3AH3rauBWDtd3U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:58.0104119Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A03%3A58Z&se=2024-11-06T11%3A03%3A58Z&sr=c&sp=rl&sig=%2Bnr4HvyePocBz0YNifbX54DrbNg%2BMoOmBN1LBoE5%2Fd0%3D","expireDateTime":"2024-11-06T11:03:58.0105885Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1644,17 +1645,17 @@ interactions: connection: - keep-alive content-length: - - '4965' + - '4960' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:32 GMT + - Wed, 06 Nov 2024 10:03:58 GMT mise-correlation-id: - - b0bb003f-a3e2-4e61-bfb3-4fd88e5e02b0 + - 7120a968-5701-4d28-a2ea-b8b7a8ae9083 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054632Z-166cf497cd4t2mlmt579burh88000000071g000000001tap + - 20241106T100357Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fba9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1672,12 +1673,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=M8WIX1uTS86bgV9ICmBT%2FctNBQsGGo73KDPPsc7RUXM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.6644878Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=mC%2FHJl0Dg4SGkC21t4jJ1IfzhC1qPpdWz4UZo%2BbQHy8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:37.664054Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=qo9CcV0j5W%2F3dfJeQLWJtRi%2FPyXfs8CkM8FQRtdBK1Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.6646238Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=Ghg1HUlpNYY3xGGk90UW5lZvFYKJA7idNq0iL4d3AZQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.6647677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=LhN6ByAKQxnQGM%2FQtEf%2BFEZQuI7BQsTE7IfONG%2BR%2FfU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.6648896Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A37Z&se=2024-10-16T06%3A46%3A37Z&sr=c&sp=rl&sig=lmrc6550HLztUmQcqR%2FVEUVeXDRUBqBesdBaSKrAxHo%3D","expireDateTime":"2024-10-16T06:46:37.6649721Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"CONFIGURING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.617Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=xXZjrzmrVxgYq3Qx0pw0oBKHh23%2BJCGTFtZ5hgCTUig%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0657934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=Yc8T8qyRMP43zTRutB1BCCcIeZuYTrw8v5RUHxmprKg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:04.0640824Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=Og6eD5Qk%2B7ShohopHvzMrLJOCpBELOPC5pPGh7aRtW8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0661697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=mbyzb1%2BLy%2Bd0j2MjMOarYifZOkN9cPSPlKUZ87BHe9A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0664922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A04Z&sr=b&sp=r&sig=UgZmzzG32%2BuFlCs8KmZDii2HAaKYom7g40C5KXOI04c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:04.0668534Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A04Z&se=2024-11-06T11%3A04%3A04Z&sr=c&sp=rl&sig=B%2B2D8Go6JWFRIe5pOjUhfGiuDvf7WGgeXKdkJjC1Q80%3D","expireDateTime":"2024-11-06T11:04:04.0670715Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1686,17 +1687,17 @@ interactions: connection: - keep-alive content-length: - - '4969' + - '4954' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:37 GMT + - Wed, 06 Nov 2024 10:04:04 GMT mise-correlation-id: - - 2805b139-7fa6-48f3-9d8f-749648a08dc8 + - 4cd1741a-ff0c-441d-9c18-9869e217cb59 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054637Z-18489d46dcck852hghpv4950b000000007wg00000000bx2u + - 20241106T100403Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fbfq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1714,12 +1715,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=WycXPZXZAs4cT7ZhiqBOoNE2OfOUHzmdLNY%2BxgI5x4Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1003513Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=qopKAZwTi0p0AqtaYXeKKiZBX%2BiHgFSLbwowti9XDQU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:43.1000587Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=BoKpZNSHtXkc5%2Fq1YuX1x93sdc1hcdeC6LXBNPLD76w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1004547Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=gY0Ajt9iTFxhBlrPHnHmTPYqZgCUeUikt476IYpNEpw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1005579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=x%2BNk07bghPsQs3qweXe67OeOo3CIaChZ%2FCX%2BMLcT9qQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1006607Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A43Z&se=2024-10-16T06%3A46%3A43Z&sr=c&sp=rl&sig=Pjf5GQXnEeqV19%2BYZMBSO4eA0mPEUJvKeToZKCVGGsk%3D","expireDateTime":"2024-10-16T06:46:43.1007504Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=7tm1bHA7gET9nfAQXTsgAuWHKQEAqvaPC4tIyCV5TO8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3832977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=%2BshX5EPND1aXV%2BYG12LnTwNijEuPjA7r5q%2F4nv%2BLG3M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:09.3829965Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=EKRuCQvJerV7hb%2BScXwE0mVi310zveAnRn4kdCjItqA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3833901Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=C%2BIoHt4LzBE1X%2F6lYI7HasVf7CrP4CcxVOZov2Z%2BfYk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3834797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A09Z&sr=b&sp=r&sig=ifwo3n8CcOh7PcHRr4Vp5WcdNOstWtVXON6BSpVL%2Fr8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:09.3835702Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A09Z&se=2024-11-06T11%3A04%3A09Z&sr=c&sp=rl&sig=l4kmrHVCKoz3DyF6EiuhN%2BHLabMHNHjaTjHWBbUVoko%3D","expireDateTime":"2024-11-06T11:04:09.3836668Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1732,55 +1733,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:43 GMT - mise-correlation-id: - - 72d716b4-c80a-4d6b-a26e-422d8658380b - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054642Z-15484bdf457rtsfnfha0z70xv800000002e000000000dbw4 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=sx8IC52XsvEX%2Bd62%2F6OAj3OagIArAPTuDHBRWgScVBo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.4680846Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=iCHjZV%2FfBamsK8Q5eVz1WW2%2BPzzwlD3ucqQV9pXR2oQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:48.4678717Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=PaQRuW4m7JhAaNlpBja0FMQYa6z7%2FD82vGIMjDqeX8E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.4681638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=tde%2BBoNTbeYvfA%2Bb%2Fxv0fnQYKBF5SuMvRUCE8eCuKE0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.4682523Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=kmKmz50zfnZ9DuJ3%2B4RDGgaN%2BD3cex9H8bbupSFaG8w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.4683422Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A48Z&se=2024-10-16T06%3A46%3A48Z&sr=c&sp=rl&sig=epah3WIo1QTIn%2FL9vhrBU%2FCwGNYNHmo0fkX0ENXA7gs%3D","expireDateTime":"2024-10-16T06:46:48.4684359Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4972' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:46:48 GMT + - Wed, 06 Nov 2024 10:04:09 GMT mise-correlation-id: - - 448986ed-2496-4d64-9808-242a8ac9b4d0 + - 2648b5bb-9e9c-4880-afc9-141cf6574fc3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054648Z-166cf497cd4r6hmp97992txd7w00000007wg00000000demz + - 20241106T100409Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fbpr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1798,12 +1757,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A53Z&sr=b&sp=r&sig=kJKtWBaQ5h%2FGq8avr3qrgqmpfndLGc8Sxe96pHCpx%2FA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:53.8825264Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A53Z&sr=b&sp=r&sig=1WE%2FUgnfApXmBfCqFuGO1RwtaIbBVp4UNNohREE2aR4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:53.8822249Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A53Z&sr=b&sp=r&sig=oCQUb5EWChtHz8iHJtm9Qblz0l9LzfAZIYX9R7Tn8EE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:53.8826143Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A53Z&sr=b&sp=r&sig=DjvPvZNeIx%2FrvZzYTI0TK7SPvGOAGpDjUfFJaXS0564%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:53.8827006Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A53Z&sr=b&sp=r&sig=T8eRDTy%2FV7O60WMIumX6S3BG6FnWk16dQo0emz7Wz5Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:53.882796Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A53Z&se=2024-10-16T06%3A46%3A53Z&sr=c&sp=rl&sig=sNap1EyRRZOX4ml9jQxszrX5Ttp5xYFwz7Sp7yJSwLc%3D","expireDateTime":"2024-10-16T06:46:53.8828834Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=lbN9ZcBb71pYgLeLy4W4%2F%2FrSypL55mcAY79q4mCR03M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.6905526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=diXKXjeGH4El9cqgHQIVanVd5AKKXhO4ktlUssLQta0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:14.6900764Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=Zl7NpMYqsg7ljP5dGlazU7izq4kVSGWjMz9qeJ3AWzk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.6907221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=iFSdLAzPyDQYD4KnAVsAKwiynP4vFB82d%2FsxrpLboYs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.6908959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A14Z&sr=b&sp=r&sig=BoV%2FRhh6zuEloVyYwsVGqi5ACF35ogu7YtGM9%2FC1cPg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:14.691062Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A14Z&se=2024-11-06T11%3A04%3A14Z&sr=c&sp=rl&sig=vdCCTbj28%2FZVyZCkmha6By2a58knJGPyVmRgFj%2BVUu8%3D","expireDateTime":"2024-11-06T11:04:14.6912356Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1812,17 +1771,17 @@ interactions: connection: - keep-alive content-length: - - '4957' + - '4955' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:53 GMT + - Wed, 06 Nov 2024 10:04:14 GMT mise-correlation-id: - - a52c618c-d715-46ec-9740-014fe396dd74 + - d6f45538-85df-44b4-8971-4cdb7856b16a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054653Z-15484bdf4575xp6m65z1ff0ptn000000028g00000000a6f7 + - 20241106T100414Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fbub x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1840,12 +1799,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=dlFJhCmtNECH8G5587GTGg4pdR%2Bz0rv34gszos28NhE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.2337072Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=cGlfzH1QwIclTVOkIYGxoZUYlVzz28Af0jWbz8SwpOY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:59.2332672Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=6ThfSfeXH6NzexAnkzoKWqEpo%2F2Fa0B%2B90cZsBHU%2F7k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.2338968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=uywihaLk0ny3CVjCfSCdwMtMVv2Yk3p8o8gNPeuraTs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.2340991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=hrw6E%2BDdOt1HujS%2FYpN9Kns5rp7SKPVAWUqbdvg0MUc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.234281Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A40Z&ske=2024-10-16T21%3A44%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A59Z&se=2024-10-16T06%3A46%3A59Z&sr=c&sp=rl&sig=4gVVPpaiLJT%2Fn4G9uUWiazgSvj80dcTN9hL2rywj2AU%3D","expireDateTime":"2024-10-16T06:46:59.2344783Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=yOuv80e99K34TQRnVtjQ%2BKHwYncTJjBGANAKrbAX00c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6131845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=MsJGVn%2F6ouqJPMJir7F4JWy1ZGRdoTH31HmKiWmcbIE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:20.6125183Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=CPmzPnX8KmOk8F5at6M9vsFUZqU9sqzipMPOf4tpCd8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6135235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=Hb5MAd%2Bv9FRFM9qwDG7t16KWs%2BHh%2BEVyzyfmsEX%2BeeY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6138696Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A20Z&sr=b&sp=r&sig=CETerPTYV%2FguNuBEp8hlQWMcPH8LVDQapclV6HesBU4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:20.6153387Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A20Z&se=2024-11-06T11%3A04%3A20Z&sr=c&sp=rl&sig=iLcoQBsy8LzJ6BD7ZvzZ7omqgOkoZwKpk6%2FBfhiiC9A%3D","expireDateTime":"2024-11-06T11:04:20.6157805Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1854,17 +1813,17 @@ interactions: connection: - keep-alive content-length: - - '4961' + - '4958' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:59 GMT + - Wed, 06 Nov 2024 10:04:20 GMT mise-correlation-id: - - 228f2664-68a8-4948-8a5e-fa32cd5d0ab9 + - 7104be65-9a1b-4fc8-961c-7d050a4520ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054659Z-166cf497cd4q6m55tfpt35bu6000000007w0000000005zaz + - 20241106T100419Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fby4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1882,12 +1841,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=yfCAyh18F%2F%2Fa%2BPWFxXdlDQbZhPZGIEc9KG24CYyOR%2FQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.6066336Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=Il2BxKh%2FQNLDp4kkcA6AFU5GWJazeFarzZ8YnMO07Pc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:04.6061578Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=6AI1ujMKz2iK6Mcfp0oWlFWKKoVCLK7B%2B%2B0ibh7%2Fxd8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.6067837Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=aKwlwxf2Vv6glgVIc2jwEmyUJJRlbwkGeaZcZRCy7y8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.6069848Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=kvWrk%2FpugyDuqjcHZsJfeINWrhEqi6g59qg60K9%2FQqU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.6071565Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A04Z&se=2024-10-16T06%3A47%3A04Z&sr=c&sp=rl&sig=%2Fi4WCIJcZcbfqcJSWCHL6PmbQW%2BQYGFGx7QV4D7p0x0%3D","expireDateTime":"2024-10-16T06:47:04.6073263Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=rXAm5u23KfLvHq3qrQXYG%2FFCQngwcwOLqC%2FRTmMG5Vc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.9912421Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=%2BWTalKgrczrxhtutgBw77MtnEo2%2B8UDSxY2WY8Ne4Vg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:25.990857Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=kMZ7FbxGoPMvRBe%2B8bYMjG3d73Xl6XzH8%2BNBaP04mJk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.9914033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=5St6D7c%2FrXUuSG6ASHh9rboYRn2IkkkLS%2FsDXmrLSXI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.991587Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A25Z&sr=b&sp=r&sig=Ihf0vVBI2i2FtbX4TClHa0qYEXJ0oyfzx09c6mp08Lg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:25.9917389Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A25Z&se=2024-11-06T11%3A04%3A25Z&sr=c&sp=rl&sig=CaTqmtWFHoew7HUPEUsyi7OgQvTniw2SIhvADnlc%2B5o%3D","expireDateTime":"2024-11-06T11:04:25.9918602Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1896,17 +1855,17 @@ interactions: connection: - keep-alive content-length: - - '4972' + - '4958' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:04 GMT + - Wed, 06 Nov 2024 10:04:26 GMT mise-correlation-id: - - 62d7b0d3-7e4f-4cd0-9f3d-6bae4e95dd22 + - 99f3f082-0691-45ec-846a-b017be49a582 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054704Z-166cf497cd4qwz4p7wbrzn166c00000002fg000000000acg + - 20241106T100425Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fc26 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1924,12 +1883,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A09Z&sr=b&sp=r&sig=sMTc8kNvvMd2yUqR7UF3uC5pvP%2Fa7pbmUs3JcnPI1Vo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:09.9545754Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A09Z&sr=b&sp=r&sig=KLLiOexCcFRCWjZy8nXmwi29XbUOUuSWwQo4DgK4ENQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:09.9542968Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A09Z&sr=b&sp=r&sig=duZ%2BmJ1J8FvPjJLPw%2BT8IWDSEAeAKCLO%2FxFzoLzoGcc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:09.9546785Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A09Z&sr=b&sp=r&sig=t9%2FpX9m1YgxxhL1lVFzb0epp%2Fq6U0G1CltTfwWgWmCE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:09.9547694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A09Z&sr=b&sp=r&sig=jKvFh3oaKxt7bD1PZTzPKnoddHEFDwmMlF%2Bz9Fp6nMc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:09.9548681Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A09Z&se=2024-10-16T06%3A47%3A09Z&sr=c&sp=rl&sig=xiDJ18tfvzS14lZQFzC%2FzZ5Es4p%2BpL3AWsj5XXrU9Vo%3D","expireDateTime":"2024-10-16T06:47:09.954965Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=IQCKxc7waacD7lv36jkLNc88GOEwSaQn1XiaO07DO7I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3057636Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=nsyV8h9KajHiuPxax3ApYAkwhBUUXW2QPccKtBFO0pk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:31.3052306Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=pd2c0ajRhE%2F4CIz7fGUj0Y%2F0M6CjBfcaai%2F0jTUq%2F2E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3059538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=ktp3akqeO9wAXG4PqmScf%2FdrWwUDH6wYPJRmZYIrUlE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3061285Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A31Z&sr=b&sp=r&sig=v749ZdypQwV%2F3FK%2BeLN9yvFbE5GStrGwfTtdZsljhHY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:31.3063035Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A31Z&se=2024-11-06T11%3A04%3A31Z&sr=c&sp=rl&sig=mZFW0HCiYt3hOUmkp72d4zAIHFdldOnEMhoxTozjOME%3D","expireDateTime":"2024-11-06T11:04:31.3064768Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1938,17 +1897,17 @@ interactions: connection: - keep-alive content-length: - - '4965' + - '4956' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:09 GMT + - Wed, 06 Nov 2024 10:04:31 GMT mise-correlation-id: - - f0490ac1-c77e-427a-824d-4f798f6d0985 + - f3beda4b-3308-458c-a01e-cb455f255a97 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054709Z-166cf497cd4jdw4g4y9hv6ku6n00000007vg000000006dnt + - 20241106T100431Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fc4p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1966,12 +1925,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=IIbhVrMwSaGXkHxCHONCqJXq3xPG1S5QKcvaxfzHnWc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.4071217Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=F6lP5YIPh4VJJnFFeP4R%2BwG6oMtW%2BUxOs1KLtZm2zIM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:15.4065746Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=f%2BuHeZZypE%2FSdXrEjB9%2BjDKnVCW8ltIZjCBdNkB2Rm0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.4072266Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=Mb1cWh6KG8ltWvRUl9%2FOmHHCItzKk4%2BRJX64PP6WCjc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.4073248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=xUNgZcCwMOI%2FQVqYsHp4f%2BCUrBx2mlxf5rm26xkPyw0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.4074182Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A15Z&se=2024-10-16T06%3A47%3A15Z&sr=c&sp=rl&sig=KOTH0deAjfDRFvCTgL3pQiv29Sf7VIfAHbRInEC%2FabQ%3D","expireDateTime":"2024-10-16T06:47:15.4075123Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=QKGSL0HNxz2oB9Za8grt27CBcCL1xUNMSTXHmis4ZvA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.616855Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=TXxXZDar5L4HnadNk2%2FVf2UKSlGjd0vbtc5HyLV%2B080%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:36.616347Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=loabYhK5HzHtZ%2BKxoTLhj80dMPogygIu%2B8rsNCJWNMg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.61698Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=YxUDnhoBecl2F9nVIzUYc2SWT45gtJw9IPiBAUx313I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.6173196Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A36Z&sr=b&sp=r&sig=YmuGrxy%2F4K%2FXgmepj8HFrJ2bNzqpcjbILKjgudA%2BcXQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:36.6174327Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A36Z&se=2024-11-06T11%3A04%3A36Z&sr=c&sp=rl&sig=Fcn65%2BMyxyH2E7sSc1xsjhaja6%2FzMQZz6yO4g9U5kK8%3D","expireDateTime":"2024-11-06T11:04:36.6175667Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1980,17 +1939,17 @@ interactions: connection: - keep-alive content-length: - - '4968' + - '4956' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:15 GMT + - Wed, 06 Nov 2024 10:04:36 GMT mise-correlation-id: - - 00a6f75c-7d03-4091-9c46-d5852d8cffee + - a46b25e0-a658-457e-8b76-ae1c6f9d6a76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054715Z-15484bdf4575xp6m65z1ff0ptn00000002c00000000017m5 + - 20241106T100436Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fc7t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2008,12 +1967,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=VY9mBqJ7cSgeoLzoYjO%2BuOesgkShZARk%2FCvdBsVSfEg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.8770746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=eGEWLO74hBgY5lbKMoKLccqlb1X9%2FUv1yyIyXStsnY8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:20.8768347Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=QdzhRz2cpiskpE7G0dY2m8OGVgxCQ6fHI3WDkOxNSL4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.8771387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=f6pBwl5%2FQV8LqlTi2zkjzmRVR9G%2BLc9qSygDkvR%2FMy8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.877202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=kEF931aAHcNC9Lhq6mpVUVbmF0ia5X8MxlCccutwrEI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.8772643Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A20Z&se=2024-10-16T06%3A47%3A20Z&sr=c&sp=rl&sig=827mgvs3hXit%2FyuMCibvnFJPOO7q9zRJzlGhzm61Kpw%3D","expireDateTime":"2024-10-16T06:47:20.877335Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=n4r4nbDRtbAKg11yvgcjM%2BhaPRN6r0wSKSCRlnTsICQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9454427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=hx1SHKzDgxCWTBQG3FzY%2FmeRulJNnKfzlnkxdjZ5LDY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:41.9449705Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=VDlmCG9kHi8bEErL9UvBZ6yAIKUMN5nmQugKW0TD80o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9456292Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=ktCXMVG1ke%2B2SSLLVhWhTKTnKayoY39zFJKEiho4YqU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9458788Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A41Z&sr=b&sp=r&sig=%2F4Y8QU%2Bddott7BkkFjm4Y8JYzpzL6VyWou%2Fbf3UW%2FaQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:41.9460604Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A41Z&se=2024-11-06T11%3A04%3A41Z&sr=c&sp=rl&sig=yjwezr1nAOQW6ZRCliZkvvchjFDh60h7v4iTOiFSEYg%3D","expireDateTime":"2024-11-06T11:04:41.9462434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2022,17 +1981,17 @@ interactions: connection: - keep-alive content-length: - - '4960' + - '4956' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:20 GMT + - Wed, 06 Nov 2024 10:04:41 GMT mise-correlation-id: - - 892feb34-f103-462b-981c-acd010c2a7b7 + - 4360f70f-8eca-4087-bdba-9ef0d5795fbc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054720Z-18489d46dcccphr7hbyy83t0cc00000007xg0000000099pq + - 20241106T100441Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcbp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2050,12 +2009,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=2dGOuoBjCavmLW%2BJdfyPTzgmOfws7qR0oc%2FUYPD9p04%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.2091931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=NuaSdo7L28%2FLZYzRHMPgHZyRgtNIiHz2VnaB0FMyIpY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:26.2089098Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=J6HhmzexLl5qlUQVGtvpONgt96yOvk2oOYlB0W3MJMI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.2092943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=BRLklfLNqnTiCH3cUKoxRvOayCuEBV316GHEDvk20%2FA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.2093856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=QKKtcBoNWYj4C8a4VLKriuSF9feMbEQxiA%2B%2BNxgjKJs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.2094774Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A26Z&se=2024-10-16T06%3A47%3A26Z&sr=c&sp=rl&sig=bOqpoqQ0wYGbht7l6peF3AzeAgApcsWdEhUARXlompM%3D","expireDateTime":"2024-10-16T06:47:26.2095778Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=11rddFu3j4%2Fr4f55aKpWlRUL6sCKmtPhsVGE1bjbaNY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2621367Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=Z9ztaIbQAUkTl0cLPOzpAayv%2BNV%2FF9ywwHKiap7VAlU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:47.2616891Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=eBjthBDqJaWoxX%2F2PPFahvQWOH3Q3066YFw%2BcSKgtm0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2623101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=H9B5zVWoH7DKiV8daimoYOeoQ1zwt0fV93HSn0zA6BY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2625063Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A47Z&sr=b&sp=r&sig=7JOOgnjxJLmO9S%2BBqIdqRRptChH0xSZqp7h9WCLjb9s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:47.2626853Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A47Z&se=2024-11-06T11%3A04%3A47Z&sr=c&sp=rl&sig=MAghNdSFrDmxvdy5LV42Jhj9P%2BmsA0YOfGGQbeRU14Q%3D","expireDateTime":"2024-11-06T11:04:47.2629398Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2064,17 +2023,17 @@ interactions: connection: - keep-alive content-length: - - '4960' + - '4956' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:26 GMT + - Wed, 06 Nov 2024 10:04:47 GMT mise-correlation-id: - - 46c19f2a-6454-4dac-88cf-2e6770527ad9 + - bebdb867-a8d4-4226-9dd6-96cebb1fbae0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054725Z-18489d46dcc5trkwxb4ya4w12000000007w0000000003bkv + - 20241106T100447Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcf6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2092,12 +2051,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=NxnMrfO%2F5BBoiy10eqCoSloLUhHvInDTfloHOIvlH0s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.5700629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=C4p0A2UnrPrTuHh3%2FAcu0UOtYxMa%2Bb%2B6tfH9l6NaDJo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:31.5695718Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=G93jAOO4Skb%2B7JoG6AyN8CnZOrlV182hBm35agARDJs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.5704384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=kp2nx%2FWTD3BP4zh%2B9nmwDKF9eK4KelKOFxpvej0bu5g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.5705701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=Ld3ZKMj3uuOt0RBPOEU%2BDoVGw7Lg5C9HMFbPxJgSS4Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.57095Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A31Z&se=2024-10-16T06%3A47%3A31Z&sr=c&sp=rl&sig=FSNDylkQmt4lUEjvoe7JIfgr1Y64%2FxNKblOSetDMwn0%3D","expireDateTime":"2024-10-16T06:47:31.5714531Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=vLiZ705mXJjt4AycuQ2ycePnp5kWLosqFhvv9iFCcSU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5833564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=6Bp2oEgv8O2XbyDHNAyfn%2Bgz9vHzX%2BUT78j0whpa5Xs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:52.5827644Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=7wAr8vbMAehkqhRy%2BVpHwtE1NaFj7NnjU%2FDiKa3Rgtc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5836055Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=iXoyYC%2FLlwNqxBuZKE%2F33DAjZrpmN4gfGmy0D1m6o4g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5838514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A52Z&sr=b&sp=r&sig=fpdrbxTdqAj8%2BkxaxuMJxz%2BX1KRD8uC%2BAUTx6sbzTYE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:52.5840991Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A52Z&se=2024-11-06T11%3A04%3A52Z&sr=c&sp=rl&sig=huNVUaw%2BSrfwHOAtBddv93occ6EZA7a%2B0UCxRdATUbs%3D","expireDateTime":"2024-11-06T11:04:52.5843703Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2110,13 +2069,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:31 GMT + - Wed, 06 Nov 2024 10:04:52 GMT mise-correlation-id: - - 4c9cfed4-f2ca-4cba-995a-ea599bf67183 + - b7bdd880-e248-453e-9afb-354ba5b18d8e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054731Z-166cf497cd4t2mlmt579burh8800000006zg0000000077t3 + - 20241106T100452Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fckm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2134,12 +2093,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=SEJZQPnim2MSwDYN6HxkCtgCnNJ0p%2FTd4rLgWxk6IBs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.9633826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=1ywLR%2B8XFgw7U5XyVtUeX3CSJ9w8MFpI7vFDRe88rfE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:36.9631474Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=T%2BpwkJVI%2FHgBLCYti7UnERM8mW1HBt%2FmU8VAPzpuHzM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.9634462Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=QJf%2FgxMC2xWFIlW34XwySP%2BkjmJ3r2MEuZqt32VEQ1o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.9807432Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=afAdNEQTqnaoYUqe%2FiMErXTgjjpKw4TMq0rEigu0yfc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.9813345Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A46%3A00Z&ske=2024-10-16T12%3A46%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A36Z&se=2024-10-16T06%3A47%3A36Z&sr=c&sp=rl&sig=2DbIAdCUDl8YRmv8xMqASxW%2F%2Fe5FNf3uCbt9CD7KDaM%3D","expireDateTime":"2024-10-16T06:47:36.9814393Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=snXY5bFxIUtjbddMWvkMbv9iWnU1nnmHmN4KbabAQh4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8935147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=A8EeQx32805xQrYWrFV08iY%2FxjG1inVjAnnzqg81fmc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:57.8928992Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=wgsLlGrc0X%2Fe8aA1u3HvzuWKHB03SKl5ygRISrfpCws%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8937013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=%2F43Z2BDl4xqk%2BUW0I26wFgkX6CixpByOV9MxDhQ54CU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8938858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A57Z&sr=b&sp=r&sig=zCqMH9jLO6R6S8w9wsiP%2BSwlAsmmHUIIztxqS0RjDbc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:57.8940642Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A57Z&se=2024-11-06T11%3A04%3A57Z&sr=c&sp=rl&sig=wlotdUZI4xgWi7uABY2D4dr6LdGR5ACG%2FyWjKngmr%2B0%3D","expireDateTime":"2024-11-06T11:04:57.8942689Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2148,17 +2107,17 @@ interactions: connection: - keep-alive content-length: - - '4968' + - '4956' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:37 GMT + - Wed, 06 Nov 2024 10:04:57 GMT mise-correlation-id: - - 270b1983-f1d2-4612-85da-5438dde7e64c + - 132fdb8f-dd6b-4238-b325-67e74e78897c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054736Z-15484bdf45772jkjsy4g2ytrdw000000031g000000001a7q + - 20241106T100457Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcpz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2176,12 +2135,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A43Z&sr=b&sp=r&sig=Ezuug8L6D7VdAja6OC0wpe5O0VU8IRHZxmyRtBqmS%2Fw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:43.7809812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A43Z&sr=b&sp=r&sig=wLi8XYDFlGGtldhcUqUVTE6gnN%2FDrohWWJo7i5b8JLo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:43.7806009Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A43Z&sr=b&sp=r&sig=ZQn0RY0M2iTG4upVro9Qxs%2FvZllZmcZfzvakfR2zRfY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:43.7811142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A43Z&sr=b&sp=r&sig=ydJjuRE2eMlO0wJe%2FbuQTn7feGoq42du3gZAom9pzIM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:43.7812504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A43Z&sr=b&sp=r&sig=FvGilwDshNUWxEWORMCZBYRntTvc2FmqHPNU54TRxL0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:43.7813851Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A43Z&se=2024-10-16T06%3A47%3A43Z&sr=c&sp=rl&sig=fNftF9LDp4DxFBTRfHdsWLT3%2BPxNosguHfA1KP7mlIM%3D","expireDateTime":"2024-10-16T06:47:43.7815284Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=XrEFba5AZfRZ9Pv8OoPowuE9FlQtCG%2BQKrweSmWMrWg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1923467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=w93zz6WM2QezhXs6%2Fugo585a9Hzw0np3HQ62yODyO3w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:03.1921102Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=o%2F9qKggsCvKvJWUAkjgzUwEdmggxutJ9XfKUU%2B68hns%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1924161Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=xk5ForaYlSwx7RtsWa6JgCHQzWrqBdmnhGifJgmFHh8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1924957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A03Z&sr=b&sp=r&sig=4%2B5yTkIFGNDAnXvYi0pZfPrMIr8NnNgjN0%2BeI8CUf1Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:03.1925723Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A03Z&se=2024-11-06T11%3A05%3A03Z&sr=c&sp=rl&sig=3bNnJO9fxKVNFyuk7ElpRFgIowvanRlB0xy2P51LJJI%3D","expireDateTime":"2024-11-06T11:05:03.1926461Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2190,17 +2149,17 @@ interactions: connection: - keep-alive content-length: - - '4958' + - '4954' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:43 GMT + - Wed, 06 Nov 2024 10:05:03 GMT mise-correlation-id: - - 84eb207b-ebaa-4953-88db-e60d4bacb16b + - 355ce580-2878-4399-ae4e-9ae85b928f99 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054742Z-165bfd566cfzsxk8dkexzes4m400000007kg00000000a2a0 + - 20241106T100503Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcvz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2218,12 +2177,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=Q9cA%2Fqt3Fhoxq1OOgWWS7kteN2QUIhHt3r10JtAlZhc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.1261918Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=RkVhggRtKrGNo7i%2B4xFmfz8Ba7BXXJGrODieDt9Xukw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:49.1260042Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=bjyTv2kGywUu%2BM9Bz%2B4Rf2wSXEMNpV3vnUrXdf15EfU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.1262595Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=%2B4N2r66CjBofR%2F%2FwJe6umDD09PK7s%2B9616JwV6DDdZI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.1263252Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=wTcHkrCEiaWw5QGQ%2BYMw%2FHlNlud2AOiQ9BApxYyRn2M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.1264004Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A49Z&se=2024-10-16T06%3A47%3A49Z&sr=c&sp=rl&sig=uOIPXFdPxcdz6PZ1EOv7xGGuXDnK1aspuqTslc%2FVQPE%3D","expireDateTime":"2024-10-16T06:47:49.1264877Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=2GLC3Gpg0TgIF1ek8hYwzc4xwAf6od3CxKKzM3tHmo0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.493652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=ZZzmLaeyH%2Bvyl9Ho17Yp7VmoQXAcabRta0fb990d7mo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:08.4929585Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=mgVBssyHLDIJu%2F7I5tOTgpnVYQ2OUUDAiKuM%2FrF6YNc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.4939968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=jsWopX3ka684DZ6NORESgyMRDnFaS2%2Bq5BQJnSeplj0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.4943253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A08Z&sr=b&sp=r&sig=PWDPUr1OgSFh9W%2F2VBJHYkwV6dWNF0nX0qfelycJIqw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:08.4955717Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A08Z&se=2024-11-06T11%3A05%3A08Z&sr=c&sp=rl&sig=87qD8ZkhOlBykNmtEoUH2BWPOEK2uBTc4z9OoRAy3Ug%3D","expireDateTime":"2024-11-06T11:05:08.4958027Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2232,17 +2191,17 @@ interactions: connection: - keep-alive content-length: - - '4970' + - '4951' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:49 GMT + - Wed, 06 Nov 2024 10:05:08 GMT mise-correlation-id: - - 330ece14-21da-4e45-88d1-97b4881ab96c + - 7e6ed771-28fe-4380-ae05-5d5df17bfcb2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054748Z-17f5d849667l8zqnh8wn56gx4400000008mg000000002h6r + - 20241106T100508Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fcyu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2260,12 +2219,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=FD4SL%2F2sfVO4%2Btj2QDSrvOxZRr3M5QGlLx6nPIEfKG8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.5033577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=GYrfzPlo2Jkeiij4yymsr9fT817tzwC%2FFtKEHyv99kU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:54.5030667Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=p%2BidXxubEIZSzabr4F%2BdzqIMRmRwKY5EvDPu2HPC1xE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.5034572Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=J66gJnDcOxI%2FRjlnp5fzcq0kSx2nd9NBLEuJs963Zbs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.5035476Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=JMAAtJBidvw9jVYvOJf%2BmWOG%2Fas05%2FBZFC0ITw5LhrI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.5036502Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A54Z&se=2024-10-16T06%3A47%3A54Z&sr=c&sp=rl&sig=GJ0vg6sXp3F%2Ben7mnV9tJ3DJVkNnftpBSPKEldJ1RZ8%3D","expireDateTime":"2024-10-16T06:47:54.5037377Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=M%2F7RoHmldr4UD6qxBj%2BThEAIbl%2FG%2FN5g0xSFJl8ccFs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.8046904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=1F5CbJley8BeNCn147AzmPlpEST3ndgtyiIfn2agwe8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:13.8041791Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=VhFmwM8owDNiSOse7MV8ArxIFjEBgNOhfkpRQ4KpEtY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.8048956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=%2BxirlOKjU0viT1hnFz%2FLK3%2BUYCMofmhC8XZ7nOl9K6M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.805112Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A13Z&sr=b&sp=r&sig=4WjXOfNNoyoQXyWBOc7JQPEpePnAGwgBhrvn7dR2d8g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:13.8052965Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A13Z&se=2024-11-06T11%3A05%3A13Z&sr=c&sp=rl&sig=QIQOe64cwyhED8tIIjxOSEyigf300IuSEqFBJfKi1SU%3D","expireDateTime":"2024-11-06T11:05:13.8055002Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2274,17 +2233,17 @@ interactions: connection: - keep-alive content-length: - - '4968' + - '4955' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:54 GMT + - Wed, 06 Nov 2024 10:05:13 GMT mise-correlation-id: - - 5703c0b6-d052-4a89-8d7c-d711370d850a + - 55a7b90c-4f8f-4dc2-9140-1c5fb98507bf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054754Z-18489d46dccp2df8e3m20gzz8w00000007t000000000fuvx + - 20241106T100513Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fd4z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2302,12 +2261,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=GA957rHqhmDNLpPTlsiOAUYVuF9PmfHLLC5nmyPkSps%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.8542716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=Q45J4dRDXs9OmFX1HVKVRz3a9ysrUi3pyrRw6IwlM7w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:59.8538392Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=aFp%2BH41NIEO4I8jNMO0FBm6vRjodY3TfjEdcFgK2X6c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.8544505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=%2BgMxErCCi2oEan1P0QkYIEWJl57cGKqTT1SPVjaizeI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.8546256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=OsJ7w%2BRJg6m2qTNt7YQVZV0ARTmYL6kp2mDPqfS6HO0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.8547995Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A59Z&se=2024-10-16T06%3A47%3A59Z&sr=c&sp=rl&sig=QCaZkScgqVhMosPdVVai5OxzVg8zaNT6ZR9u8RYrXAk%3D","expireDateTime":"2024-10-16T06:47:59.8549837Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=GDOBhFQlu2zf1mtVVc4HJunPoaGzkYr5idKu0VkP328%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1137977Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=TqTd66NsCFekM4T7CL4G8QGEiSJqy3jtg9ThpfhqnK4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:19.1067151Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=yKUbN4r%2FxgV0BNxte8eSIBSgPjYTwyOgChToeVuQRvg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1139025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=iB%2BxvoJaQktsHrqeXAyZVfopesbQu%2FiQ1tu969B%2F5tk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1139949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=U4UjOqsPPFKfETTrUcztw%2BFGsxZ4w4FY8VfsF7VNWkU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.1140853Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A19Z&se=2024-11-06T11%3A05%3A19Z&sr=c&sp=rl&sig=fUlDQSMiEBOqE4kYqlWTbIl9TeuX9W8XQ6YrJrZnF8I%3D","expireDateTime":"2024-11-06T11:05:19.1141782Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2316,17 +2275,17 @@ interactions: connection: - keep-alive content-length: - - '4954' + - '4952' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:59 GMT + - Wed, 06 Nov 2024 10:05:19 GMT mise-correlation-id: - - 4162e4d7-2c92-42a5-99c6-b83f599a5b27 + - 7eec779a-d9fe-402d-b6d8-733ede97d944 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054759Z-18489d46dcc5trkwxb4ya4w12000000007wg0000000038zx + - 20241106T100518Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdac x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2344,12 +2303,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=%2FUX6sncEmCaBf22qrf0RMj4A5N01QD2OMYCfATZNT%2B0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.1858175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=iqWFOLh1KoVHzwYIN09xiTQ0IeN%2ByPV53k8%2FX%2BzPNGg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:05.1855082Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=s8p72X9RB49wxsC9W5BL0UHOO9rniu6Ug4%2FGxSOmK2U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.1859018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=kRDL9ddvSkBlVLGVsqevHuyLT4GSCK0qbKZcP3QY%2BqE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.1859937Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=zv1Ueotcafkb2aivCKLAlkpB5S55DXz%2BRxHfcyGhfh8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.1860732Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A38Z&ske=2024-10-16T12%3A44%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A05Z&se=2024-10-16T06%3A48%3A05Z&sr=c&sp=rl&sig=6oQrpObqR8jvi1m3FskC7R0BQFlvZjGdxvHcSAiN860%3D","expireDateTime":"2024-10-16T06:48:05.1861564Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=AqRWz9kXab4e8BQkLAbZveuKdXG3YIVfOQdxueTNcIg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.4309423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=oMLlL675NIjPkJn037auTaWaWShB4gQfSjAA%2B6%2BYZuU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:24.4304497Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=H4%2F1%2FPBIPAXoEfyM8q7f8rwSmr2rwdwaIYUIXkkHBYo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.431157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=VFELi3QUIfVsEXkykdXZLOkt575u3Snhlf8f2FsuaYI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.4313575Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A24Z&sr=b&sp=r&sig=MP%2Fd0zAsKOsTyF1w0R81p579VWuZa0EElZCoghsBTHw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:24.4315683Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A24Z&se=2024-11-06T11%3A05%3A24Z&sr=c&sp=rl&sig=KnJXaq%2FsquAydG86wNvwozCEI7iobrIU27BYCOvJpxA%3D","expireDateTime":"2024-11-06T11:05:24.4317354Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2358,17 +2317,17 @@ interactions: connection: - keep-alive content-length: - - '4964' + - '4953' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:05 GMT + - Wed, 06 Nov 2024 10:05:24 GMT mise-correlation-id: - - b3a0f0fe-41f4-4707-a8fd-2e5597b308a6 + - 4d705459-d594-40ea-ab01-07c231e6e827 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054804Z-166cf497cd48w6x2zuxa69f51n00000008100000000057ae + - 20241106T100524Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdev x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2386,12 +2345,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=Bn2Jpt3RQZgW1ybJclNohOuujA8mcSiWynbQF2cwXXg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.4936614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=cCihcaLBWA8Cjqa0UZtSaYUv6%2BxkbFN38iV%2BnxOjzvw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:10.4933372Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=znc9vg%2BJPWmew2UK%2BUwE%2B12D70mkGG3Mnmv%2FL9ebeYc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.4937465Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=W2AwzMbFvtAjMF6W8GW4Ghw%2BkBYODpUzltxcjlD6jcE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.4942431Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=iH01QTd58vCkJ6sQocPo%2B3Vl30ZN8FlohzOdchM2NVU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.4943261Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A10Z&se=2024-10-16T06%3A48%3A10Z&sr=c&sp=rl&sig=lOp6HftTS0WNq6JGl2Cv0CErmbhHZnkJsWjMA6XXNfI%3D","expireDateTime":"2024-10-16T06:48:10.4943914Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=oC5rVL%2Bwv3hvYV2mDdz8OKsIw3WSLVhn7idXZWSm5gs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7335897Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=53MQv3kGCkr5O7muV%2BDxY2ez3ZDc0sRfEHZ7bmhwYsg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:29.7333016Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=WDe%2Bxy%2BxBCrZyv6sReM2nsBYWVZiqNYAa1xUWXsEvf4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7336789Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=eKG%2B6UBx4jp8cAoz%2FMNqUQFIh8uQWO7B02TeQooS3LM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7337683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A29Z&sr=b&sp=r&sig=LXGx%2BiPRDXwNzydYtEXha55FSsBePVDEhABf%2FvQyhbw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:29.7338563Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A29Z&se=2024-11-06T11%3A05%3A29Z&sr=c&sp=rl&sig=LzjS4OddYIoaIIr%2BrJzCMAoULURRD1%2FscMPS%2FznyYXE%3D","expireDateTime":"2024-11-06T11:05:29.7339431Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2404,13 +2363,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:10 GMT + - Wed, 06 Nov 2024 10:05:29 GMT mise-correlation-id: - - 32df408b-c52b-4150-8748-c43665825b82 + - a506659a-8606-4d2c-9ade-78f5abe3690a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054810Z-166cf497cd48w6x2zuxa69f51n000000082g000000000x0n + - 20241106T100529Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdk8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2428,12 +2387,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=LiV8AXhTEb1JXXMI16WrZiWRCASSETrRcETGuaZYH38%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.8826555Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=t%2Ff8BJVWVitG78ZHSgTHAWBx3NggkDWDCpzCkJYShqA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:15.8821777Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=yD8RbKe76whtrkkwAebHsR68kO0JMyuRHo7kKTZnCag%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.8828194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=4arkCEJ7KcOHLyVyRFoAlpgG%2FlU5ufK0tT1j5zxVhHA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.8829814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=yczvkf7qoLsxrCTsFoxA6fzI32Y%2BA5i8R5pvEoNZ8k0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.8831414Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A15Z&se=2024-10-16T06%3A48%3A15Z&sr=c&sp=rl&sig=%2FgVmqCzN4Jci02zWOw2OQ%2BFF4DA7kQUxX1c%2F39bd09A%3D","expireDateTime":"2024-10-16T06:48:15.8832975Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=mwxwtZHq7N5WW4VDfEvsVhUZKZrRbXdVZji58poQEyk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.0416253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=SJWqm9rb1rEoMWFTiHnfEsIGz9IlrHVJiohw9wnscTQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:35.0412788Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=mwJlcWZrdPuvndZ4naHWG%2FzCf5XxjfiUp5jpQy%2BhTno%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.0418008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=KLfdvF1pwys9SHatOjeLy%2BR17eVLWUynNVChNVVHGWg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.0420545Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A35Z&sr=b&sp=r&sig=Pj8vRLsFjrjS5ZtnozpzBN%2FlvGQX088uOog1tIyj70M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:35.042281Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A26Z&ske=2024-11-07T02%3A02%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A35Z&se=2024-11-06T11%3A05%3A35Z&sr=c&sp=rl&sig=r3IXHm4%2B%2FtVu7awoWR0dM7xRC8KVNoD0ZYQ8Lpm8ypA%3D","expireDateTime":"2024-11-06T11:05:35.0424144Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2442,17 +2401,17 @@ interactions: connection: - keep-alive content-length: - - '4960' + - '4953' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:15 GMT + - Wed, 06 Nov 2024 10:05:35 GMT mise-correlation-id: - - 608bae2a-8783-400d-aed5-5436916b0e05 + - 9f69b78a-c2ab-44b3-8397-032a98ccdda8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054815Z-18489d46dccgwx6cyqev009zy000000007qg00000000euqe + - 20241106T100534Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdre x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2470,12 +2429,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=N4qrbBCf5YL3x8XkJRzYENEFHC%2Fj0m%2FAlWG2cowfem4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.2514216Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=T2sbhbPUqzQBT6FkLmHTIcT%2BWikOhTMXf%2F3HU4nvkC8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:21.2511428Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=FzP9PGlxU53OIP3NCGDinTKLnZwUebYBOtHEy8JWi2s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.2514952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=m%2BX7SNarbe0944FFw89BCip8h4AkJX9mQaYrxH8xGjo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.2515496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=6UyDFrXfR3283AXFzVBJC7o7MwszvTUWIa8zksv5TR8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.2515986Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A21Z&se=2024-10-16T06%3A48%3A21Z&sr=c&sp=rl&sig=xTbJ5xIWz8KywR85RLaGuv6UQMC%2FQF3BGktOioC8Ths%3D","expireDateTime":"2024-10-16T06:48:21.2516449Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=lUsZyZ%2BkNfdumxdVsSXFKhCAXPi%2BB7%2FW5AkYQiedAqA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3511592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=odMAkgw47%2BXyixP8gyA6qbiI2O%2Bf0aZquUB6IIyLXG4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:40.3506535Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=gs1vSe8nb9CtxcdD%2BqYoiJ6merRlIxKXWqV5YP0aK%2B8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3513631Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=kKibrak6iqd9XHEZgT%2BAWrvZHvyjpcWmaHaNaPLB27Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3515728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A40Z&sr=b&sp=r&sig=%2B76r60m7sq3WOOtSC0hvTuuxHhxo%2F18p%2FqwyPEqYC%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:40.3517692Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A04Z&ske=2024-11-07T02%3A02%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A40Z&se=2024-11-06T11%3A05%3A40Z&sr=c&sp=rl&sig=X%2BKH7YcH24hJ2plVMWlcE0%2FEY%2FgYimT%2FGUdipEkGnPE%3D","expireDateTime":"2024-11-06T11:05:40.3519837Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2484,17 +2443,17 @@ interactions: connection: - keep-alive content-length: - - '4960' + - '4974' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:21 GMT + - Wed, 06 Nov 2024 10:05:40 GMT mise-correlation-id: - - 221ef5ef-a890-4e77-8f63-3cd12fa74ca9 + - 8b90a9be-2663-458c-bcc7-94570505a717 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054821Z-166cf497cd4q86sbftw3zaubkw0000000820000000007r1s + - 20241106T100540Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fdw9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2512,12 +2471,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=bX92Lq12x4d14eKxMbF4cyZn3sMIx%2FbFl49dAbho6jU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.6087208Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=PfY3mJgBiH4d0%2Fx5r9dj%2BjrjTy9EUmWmiQRQmTgluvM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:26.6082358Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=fOYOS3LFcpsccSSDhcSAuGIZfV%2FXzqDpVB0HsqSfd4U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.6088791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=aJeCZDvws7gR0PBHL6AacbRG9Baf4XsE%2F6KNfTohaF4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.6090125Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=1qYP4aFzWKSmHVtPVQvW62OS4E9Bvwsu4xGbhcg2Tog%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.6091804Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A26Z&se=2024-10-16T06%3A48%3A26Z&sr=c&sp=rl&sig=4UnrVQgibg7lbBa3uuDVoexo%2FIsQacK6%2FvUK9W9dcpQ%3D","expireDateTime":"2024-10-16T06:48:26.6093467Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=7B170FggV8JCCf%2BMjrFDuERAhgfqad1p2lleAjHQfOE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6512485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=k0giQQgmSKHW1M8%2BIvvT2PP%2BoHf%2BrpV7DWedrJx6uL8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:45.650842Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=Xzz3eGn%2BdcdJoe1FXli1E7vc5mX2bOJnj875TRjdg8U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6513893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=%2FC1KQZOy5kD3rIBzDjwcq4uLIVBxzOIvP%2FuBK3LPgcc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6515416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A45Z&sr=b&sp=r&sig=nvAEJdGgQ%2B5NJAwniCo9T%2Ffd6OozMmEnF6lYZIaqUAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:45.6516878Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A09Z&ske=2024-11-07T19%3A03%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A45Z&se=2024-11-06T11%3A05%3A45Z&sr=c&sp=rl&sig=3%2FBvUQxzFOcJBSaPIv%2BWxH7t1eSnt4B57aZfQU3xC%2Bw%3D","expireDateTime":"2024-11-06T11:05:45.6519783Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-11-06T10:03:09.665Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:54.069Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2526,17 +2485,17 @@ interactions: connection: - keep-alive content-length: - - '4962' + - '4965' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:26 GMT + - Wed, 06 Nov 2024 10:05:45 GMT mise-correlation-id: - - 517523aa-228e-4f78-b357-02454e31c537 + - 42825324-b021-4125-90bf-470c238c3ebb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054826Z-17f5d849667bqf6xbnv2zbvn8n00000009eg00000000bna8 + - 20241106T100545Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fe1d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2554,12 +2513,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=kK4zqv9ZmMkJEQaS0ZMtNan%2F9Rk%2BwrnIsu7stZ3js2c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.962555Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=cK1Da4rpVMyZMIOQ4Rgv0IEJJwBLNOEgeKU9djWRy24%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:31.9623105Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=nRzp%2FSFpLL7YL0I2idwOPmviSIn6Y6NzKL6u6wjpvX0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.9626283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=WL942FG564bMF5YMbzAbkCPnZgl%2Ba8lusEZM6Sk2jYQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.9632088Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=FsLxJw8eWTTEdqZtW2T1A0NM1uT2UJH2QeMXce05FnI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.9633717Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A43Z&ske=2024-10-17T14%3A45%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A31Z&se=2024-10-16T06%3A48%3A31Z&sr=c&sp=rl&sig=Tc3iBn9My8ZbXQVsU6hr7sOjVcUyck8LAIoiNG6Qz0Y%3D","expireDateTime":"2024-10-16T06:48:31.963515Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"EXECUTING","startDateTime":"2024-10-16T05:45:43.999Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:40.676Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=hrkLSw6bVaVfWO4K%2Babp1PAk2qjURg6U51iJxPtcA1c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.9669173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=2fvwIPVNOydFqp33EDXuTOvLxS0L3NRJeHFxbYFvbp8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:50.9666348Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=5v6H6TYzrLJTLRktx91t3zfn5r3MZcHEzofZzuKDFeo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.9670093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=zqqp7GYpcfUuBcFM1eFBqeB866PsFYQNNHpQqddHi4k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.9670997Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A50Z&sr=b&sp=r&sig=ECSWxkqGT1B8N%2BRxjVaQeJ1cu1fojjgBDn1a86TNd8E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:50.967179Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A50Z&se=2024-11-06T11%3A05%3A50Z&sr=c&sp=rl&sig=eEF7NH%2B9DnLZPRIM5QDMSzFEd101cSyUb7dmhzeJVk8%3D","expireDateTime":"2024-11-06T11:05:50.967309Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DEPROVISIONING","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:49.846Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2568,17 +2527,17 @@ interactions: connection: - keep-alive content-length: - - '4954' + - '4992' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:31 GMT + - Wed, 06 Nov 2024 10:05:50 GMT mise-correlation-id: - - 9d4ffe97-3f19-47e9-b457-de88747990d3 + - 2100e531-299d-4384-89cb-b1709c11002b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054831Z-165bfd566cf8d7vsev8ncb6400000000061g000000002crt + - 20241106T100550Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fe7k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2596,12 +2555,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=uxrfNYCCioV8KWxM5AWQpxfXVfi0zQsx5C%2BAnAPbOEs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.271713Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=LVWeL1j%2Ftcmd7zlmsfEaK%2FZEIPY8QA2KET6qMfR7%2BgA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:37.2714222Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=zHZYe0cjv9WrJ7Jl54O4LSnl4SbW7h2gjbrLuJorwKM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.2718052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=idt78JyPPZE2Z%2Bxin3U36i8DVPRaDKkeXFV9wYmXdlQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.2718978Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=ZKXn3SrnXzO%2FVE0y8fkhDpFnBjvXhqn3cwGDTrjLz80%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.2719842Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A08Z&ske=2024-10-16T21%3A45%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A37Z&se=2024-10-16T06%3A48%3A37Z&sr=c&sp=rl&sig=AtFN4ROAvkVE%2BwB1JixviHEVp7yBNIKatIYhnAr2P5Q%3D","expireDateTime":"2024-10-16T06:48:37.2720742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-10-16T05:45:43.999Z","endDateTime":"2024-10-16T05:48:33.991Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:34.994Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=%2Fztfv5onUCgVB6TVsEVEHdlsT7wB7IQ0Vu8wHyg3xb4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2700769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=lF9fB6IJLyWdpdhKav5E7w8hOTyZEiy228HMjHxUAG8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:56.2698046Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=WfV7O4lY1IGwTi2dF9LqICxELLJGUeWvtWvwUIuaFgI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2701725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=wr2zGWIrc8YuafzMVXGnycy1WytL4i3%2FJvN1z7HkDFA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2702556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A56Z&sr=b&sp=r&sig=ffqz0ETsMB5mExzn4Fksi8wkDHQ8NYb0MemTbVu07dA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:56.2703476Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A58Z&ske=2024-11-06T17%3A02%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A56Z&se=2024-11-06T11%3A05%3A56Z&sr=c&sp=rl&sig=1H1oO0P21%2BCld%2F785vQi6dBPn5Pt63h9qJBTWffanGU%3D","expireDateTime":"2024-11-06T11:05:56.2704406Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:52.579Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2610,17 +2569,17 @@ interactions: connection: - keep-alive content-length: - - '4997' + - '4986' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:37 GMT + - Wed, 06 Nov 2024 10:05:56 GMT mise-correlation-id: - - 769caa58-c1ed-42f5-8f7e-5121a27306c7 + - 418b64f1-653b-4c4c-bfcd-e18d161418c7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054837Z-18489d46dcc7qds9rw9wr310dc0000000650000000006xmu + - 20241106T100556Z-184f6b5dbd8k92hshC1MAAh0wn00000005pg00000000fed5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2638,23 +2597,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:44:04.2494504Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:44:04.2494504Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"92da5368-2b70-439a-914d-6795b702adc7.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":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:37 GMT + - Wed, 06 Nov 2024 10:05:57 GMT etag: - - '"c501a083-0000-0200-0000-670f52b80000"' + - '"fa002015-0000-0200-0000-672b3e8a0000"' expires: - '-1' pragma: @@ -2670,7 +2629,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7CE94BDAF6B44E8ABF47D0F1A5E52496 Ref B: CO6AA3150218025 Ref C: 2024-10-16T05:48:37Z' + - 'Ref A: 3A9D08158B33413E96A90EFA5A47E852 Ref B: MAA201060514019 Ref C: 2024-11-06T10:05:57Z' status: code: 200 message: OK @@ -2684,12 +2643,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A38Z&sr=b&sp=r&sig=IFymVOuaGQ11dSoLJolXfuaiBGZ2BhIzfmiFSxlMlL8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:38.3306767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A38Z&sr=b&sp=r&sig=kjxlw6b%2B3%2FGP9OaBruZUvY0apt5JgTFcpyfM%2Bdusxuc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:38.3303902Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A38Z&sr=b&sp=r&sig=mCqqQmkBvz6X2Fckc8fdU8hwfi6n7BEI8%2BD02u15FSw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:38.3307779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A38Z&sr=b&sp=r&sig=mcK5euMDBUNXYrFFUEQcsneIXaUA4GSdypUgl3qnSlw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:38.3308656Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A38Z&sr=b&sp=r&sig=5%2B%2B5F1ff57ZjeEOndyD5shKDSfAiespA6RctHWKz7YM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:38.3309536Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A38Z&se=2024-10-16T06%3A48%3A38Z&sr=c&sp=rl&sig=SO%2BgsPbem8umvA8zmcwCGPsVD0m7Bv1KAUwaUEa89ok%3D","expireDateTime":"2024-10-16T06:48:38.3310404Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-10-16T05:45:43.999Z","endDateTime":"2024-10-16T05:48:33.991Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:34.994Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=JHykuSw%2FOGmXaGBLXnTqwpBlQMiP%2Bnpxb%2BwUsLTqXf8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1831399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=gol1Z0u82jLdspg89uPRSxoKk7erLJptgBYFPaUesTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:00.1827415Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=ELxZ0ASklAT36mpeJ%2FiF0f%2BBiuIqDEuoz7%2FRF8grbIg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1833071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=k%2BWpvsR1utwoyDGhL%2FQcKGs9TNbP4frXPOkuLUDe%2FHU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1834768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=sWzTbR9XOeBoCTVtn%2ByzvDJeMPUJwJ1giBsShyonVUE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.183643Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=cgRRlssr8%2FJDL6dsOieJTQgzxkrY73kBw%2BpKQXSBxds%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1838076Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=jNp5FQLHJrW86Xnz1%2BPMahF1bL4sg%2BY5k735UIfmI8E%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.1839739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A20Z&ske=2024-11-06T17%3A02%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A00Z&se=2024-11-06T11%3A06%3A00Z&sr=c&sp=rl&sig=pjFHlgr9NpuG%2BiPqHq9cZOX2lHsiLhrs4VfD27KcG20%3D","expireDateTime":"2024-11-06T11:06:00.184143Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:57.945Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2698,17 +2657,17 @@ interactions: connection: - keep-alive content-length: - - '4998' + - '6180' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:38 GMT + - Wed, 06 Nov 2024 10:06:00 GMT mise-correlation-id: - - 2f27fe04-09b5-4867-b36d-13cf6af73b8c + - e697d6b6-de40-4c7d-bcc4-8f3b69e1e6a8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054838Z-166cf497cd4dfx7788bvx3ssu800000007t0000000008k1r + - 20241106T100559Z-16bf8d9b4c7j9mw4hC1BOMxhec00000006gg00000000ht79 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2726,23 +2685,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:44:04.2494504Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:44:04.2494504Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"92da5368-2b70-439a-914d-6795b702adc7.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":"2024-11-06T10:01:22.9289537Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:22.9289537Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:38 GMT + - Wed, 06 Nov 2024 10:06:01 GMT etag: - - '"c501a083-0000-0200-0000-670f52b80000"' + - '"fa002015-0000-0200-0000-672b3e8a0000"' expires: - '-1' pragma: @@ -2758,7 +2717,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 109AF1A3184042E29F3A4EEE2A32EEB0 Ref B: CO6AA3150218027 Ref C: 2024-10-16T05:48:38Z' + - 'Ref A: 5DC39774B8B148F2B0C9D3B38A854BE5 Ref B: MAA201060516031 Ref C: 2024-11-06T10:06:01Z' status: code: 200 message: OK @@ -2772,12 +2731,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://92da5368-2b70-439a-914d-6795b702adc7.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview + uri: https://2711259d-91f7-4452-8e14-a18b660d6ebe.eastus.cnt-prod.loadtesting.azure.com/test-runs/create-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"34118856-8370-4941-a2b6-f883eee8b8fa":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8c774b60-dc4c-416c-9b40-e6e221944877":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"35c7b595-3c9a-474a-a639-7d6c4a2f8942":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/61d9a776-826c-49ef-aec1-b85555653acd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A39Z&sr=b&sp=r&sig=30%2BEde7JmYJ90z1XIvMhoerAnSkKYJBPUdQeX6jd9Y8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:39.38149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/5e4cb250-67bb-45f6-9277-e7df9d7654fa?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A39Z&sr=b&sp=r&sig=Aw1BXtO8KCQQ7%2FcSW4rhodD0eY56HM1446HgXuLGKKs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:39.3810953Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/a5b2b174-16e7-4c4a-983d-7d0e21debd06?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A39Z&sr=b&sp=r&sig=%2B3O4RPnHh4m%2BnTX5ksBYZ%2BdLhTfQMod4b33erkpCS6M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:39.3816548Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/4b6d81a6-ab71-4dc6-b1ac-4794b1e0478c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A39Z&sr=b&sp=r&sig=ueC3EjbqjdRdfETp7Bz8vOaYnWmBBtmOWEqcmt%2B32aM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:39.3818157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/d8b71bf1-4a36-40e0-94a9-bd5113626a4c/1d964e6b-c3b9-4195-9d02-f039b2e4cf62?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A39Z&sr=b&sp=r&sig=KLJv1I3mgNSjfEsixKvrfIPSwrgWZyIca3nXmqOVH0U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:39.3819821Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://d47rqvsjyouj25zwsjm38npn.z14.blob.storage.azure.net/aedb0ff8-4e37-4f82-9ea2-778fcf32bf4a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A39Z&se=2024-10-16T06%3A48%3A39Z&sr=c&sp=rl&sig=S72ePDTA%2F5TWj7CLoY8%2FdX053PT25GuIWPFMico4V%2BM%3D","expireDateTime":"2024-10-16T06:48:39.3821463Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-10-16T05:45:43.999Z","endDateTime":"2024-10-16T05:48:33.991Z","executedDateTime":"2024-10-16T05:45:41.293Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-10-16T05:45:42.682Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:34.994Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"62e79b2e-1dbe-449d-bd09-35f2ef6d2daf":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"f0c5b6b9-a234-46f7-a47f-a85b0aad0f57":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d1241845-22df-41ed-95ac-972418ce4191":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"11","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/13a67467-b040-44d2-8f6d-64e441019c91?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=guErg0bQ9hTMQ5CJ2jk79wdVOynic%2BKNxgmjGS3i2Zs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5520249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/b815e6d8-15f3-4459-aa94-4e55427f3a26?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=XecAoYk5JZCqPaJQV%2FHG8R1bogisnldQ6WTB2ZG%2Bxxw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:04.5516156Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/f43b0138-c543-41df-ae51-c5b84bd8e72b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=4iBthEfoZ4DyTX6SVi%2BKQWaricxWtFXeIgUFLRRHYUc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5521981Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/2afb216f-4c87-4cf4-b22c-3f3aa0b1a2de?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=V58NQI3z1Lsh9pzEikXriZKvboj3TSVkBZ8wlT%2BZPzA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5523865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/96c0caa6-9b43-4356-9b99-f87bec9f9638?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=P2AFL%2FyCcC2IqgmzPdqN0nUhvhNauc6daEQJyEYuuEQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5525532Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=AgJfFwhZ6XIG2Qs%2Ft8ebykV3s2CuuiSjC8QnqrqwbdE%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5527227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/d87d1613-d863-4d6e-bf5b-1c6ec1d651dc/41979a65-2b08-4c7d-aed7-346189a8e46a_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A04Z&sr=b&sp=r&sig=gpmbl2JT%2FKheCbvEymnSWwm6YjXVXyKvKPnhrwoolSM%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:04.5528912Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://kvau8teoyvl8nxdyjigtv28z.z32.blob.storage.azure.net/41979a65-2b08-4c7d-aed7-346189a8e46a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A03Z&ske=2024-11-06T17%3A02%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A04Z&se=2024-11-06T11%3A06%3A04Z&sr=c&sp=rl&sig=8lzrzp93R4MzDeqN6uV9XFtZPL5QzJs%2BjkutA9pf83w%3D","expireDateTime":"2024-11-06T11:06:04.5530666Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"create-test-run-case","displayName":"Sample_testrun_display_name","testId":"create-test-case","description":"Sample_testrun_description","status":"DONE","startDateTime":"2024-11-06T10:03:09.665Z","endDateTime":"2024-11-06T10:05:49.726Z","executedDateTime":"2024-11-06T10:03:08.022Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/create-test-case/testRunId/create-test-run-case","createdDateTime":"2024-11-06T10:03:09.293Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:57.945Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2786,17 +2745,17 @@ interactions: connection: - keep-alive content-length: - - '5000' + - '6170' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:39 GMT + - Wed, 06 Nov 2024 10:06:04 GMT mise-correlation-id: - - 834c0a82-e295-4da7-8880-77bddf9e56fd + - 3eb18e00-e911-4611-9ceb-4b5c41cd01df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054839Z-18489d46dcc4mwx2ddastu82g800000007wg0000000015tg + - 20241106T100603Z-1556595cbbczl92whC1BOM6xac00000006a000000000eg7r x-cache: - CONFIG_NOCACHE x-content-type-options: 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 62b5a938719..63a2d0d2067 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6429755Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6429755Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d9a7848-2bab-4c9d-93a6-85cd47e97f65.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":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:07 GMT + - Wed, 06 Nov 2024 10:03:10 GMT etag: - - '"c501b772-0000-0200-0000-670f516f0000"' + - '"fa00f418-0000-0200-0000-672b3ed10000"' expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 3DA3E9D740E24201AFF9B6E7F2D0BE76 Ref B: CO6AA3150218037 Ref C: 2024-10-16T05:39:07Z' + - 'Ref A: 3F1F3D22DDD74FFC99C1B74118A83E71 Ref B: MAA201060515045 Ref C: 2024-11-06T10:03:10Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:39:09 GMT + - Wed, 06 Nov 2024 10:03:13 GMT mise-correlation-id: - - 1e2bc520-c787-46ec-93ad-9a586e087ef0 + - 9857cdee-9d38-46ee-a147-9687f3889b6f strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T053908Z-165bfd566cf626cbrvmzsprhfs00000006wg00000000g1eb + - 20241106T100312Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018ckg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"5f0c8391-e0ce-4a63-aa84-ed120118139e": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "aa9e07a1-f982-404b-b53b-5405ff4917ca": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "d721a689-294a-44c6-9aef-65e70af5c976": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"b1e57182-8d15-463e-9afd-8ea8e7f0204d": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "2cf7ce95-65c7-4166-afb5-579d6b276d7d": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "2db80528-efec-4a02-855b-84e3c708851c": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:09.546Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:39:09.546Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:03:13.93Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:13.93Z","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 connection: - keep-alive content-length: - - '1052' + - '1044' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:09 GMT + - Wed, 06 Nov 2024 10:03:14 GMT location: - - https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview + - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-03-01-preview mise-correlation-id: - - cb517a1c-dcd5-4dd2-9b98-f9e06708ba99 + - 4357c9d0-c55a-42dd-b4af-9f07e2dec016 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053909Z-165bfd566cf4jq7qqh4q33tppw00000007yg000000000t1c + - 20241106T100313Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018cq1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:09 GMT + - Wed, 06 Nov 2024 10:03:14 GMT mise-correlation-id: - - fc869d4a-83f2-4b17-81d0-693750d6ba1f + - d4a494b6-7b82-403f-8407-42de3dcda531 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053909Z-165bfd566cftg6wfx5frzdn92400000008hg0000000060d8 + - 20241106T100314Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018cs3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,14 +203,14 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=UiyxBIcKxmyihD6qlGlz3GKOdF7UY6nbN%2BRgwnjgguk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.2376107Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A15Z&sr=b&sp=r&sig=fBPsF%2By37kDGmtKs4QG47yDxxKNjnKfScJq64cN3Q84%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:13:15.8238449Z","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 @@ -220,15 +221,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 10:03:15 GMT location: - - https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - ca8b3395-e83b-4519-a43e-1fdc36380001 + - c22363cb-de9b-4fd7-a47c-32aead48b47a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053909Z-17f5d849667v4qhr7z7qcf8ddw000000070000000000fdkw + - 20241106T100314Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018ctp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=0GA8eZZPtwrCmJ97yAG7A6F5XCwVnUb%2Fo74PMo05aeg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.561296Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A16Z&sr=b&sp=r&sig=6Ftotx4nNYo4vcgFhZPbDKHuSEkBjE%2FGv6Gj6HOXkfY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:13:16.1774787Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 10:03:16 GMT mise-correlation-id: - - 43fad63c-4e5f-4225-bb41-cd478926337b + - 127189fd-036e-447e-b863-1a0d1742aa2d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053911Z-165bfd566cfv7d42pfcg7e4ptc00000004ug000000003vz7 + - 20241106T100316Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018d0m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A12Z&sr=b&sp=r&sig=%2B14T%2B9vC2%2BdR6y2de20gmDXlf6YYSJKNM3uyoArscOQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:12.0095739Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A16Z&sr=b&sp=r&sig=9CVLk749IiMEgwo0BvmaLDRCOMDQ2iC2%2BT7mEm82BEI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:16.6847178Z","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 connection: - keep-alive content-length: - - '574' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 10:03:16 GMT location: - - https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 95a213bf-58db-43e6-9d9e-a1cc6a4f893e + - 53c98f6a-ac4b-40dc-ac97-c6b97d9a9195 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053911Z-17f5d849667ldxhfw3zcavh8t800000008g00000000053gb + - 20241106T100316Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018d28 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A12Z&sr=b&sp=r&sig=0sVEl7k0UuW%2BvjY9kDU29T8HalIQ%2Fy6WdTcuMHqamYQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:12.3331043Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A17Z&sr=b&sp=r&sig=eefT58UxTgwmJdg5ErXF%2BVaT6S0uPYLb9OCbz2VTeHI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:17.0213053Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,59 +358,17 @@ interactions: connection: - keep-alive content-length: - - '572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:12 GMT - mise-correlation-id: - - a2fb0aca-2b09-408d-a087-dc164743b89e - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053912Z-17f5d849667tvht4m3rc1u623400000008vg000000005w0c - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A17Z&sr=b&sp=r&sig=s%2BxriLOTeKhKZd27MN23eZHJxrI%2BOE4lUskIjFQ%2BXXs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:17.650686Z","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 - connection: - - keep-alive - content-length: - - '573' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:17 GMT + - Wed, 06 Nov 2024 10:03:17 GMT mise-correlation-id: - - 1aef445e-0e78-4467-b5ba-fd8556982e5e + - b5b129d4-6d6e-4099-8d47-7bef9337a1be strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053917Z-165bfd566cf4k2zhgy89gpw604000000090g000000007xn8 + - 20241106T100316Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018d4x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A22Z&ske=2024-10-16T12%3A39%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A23Z&sr=b&sp=r&sig=aaVloDhNGfBslaaCI8PqQtD%2FckEHb2gMX7e7clYWJBg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:23.0114882Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A22Z&sr=b&sp=r&sig=cdgBCcgyIi7MTCZBReEYrpODODe%2FEDyidN5tYlHeVlU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:22.3103537Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -445,13 +404,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:23 GMT + - Wed, 06 Nov 2024 10:03:22 GMT mise-correlation-id: - - c94e824d-ec6a-44e2-b999-9eb5b4851137 + - 77e577fd-9fe3-4ac1-a6f0-4bfb46a466a7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053922Z-18489d46dccp2df8e3m20gzz8w00000007sg00000000fvt3 + - 20241106T100322Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018dxx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A28Z&sr=b&sp=r&sig=tRQvdRqA6spA%2FkMR%2BpMlgNL%2Bd5Gs4W35rWLKsikeioA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:28.3447779Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A27Z&sr=b&sp=r&sig=jhFf1Za8keVLg1%2F8kDsHSuQkIlp4Ml4Sr8saUPhvyko%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:27.6080562Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:28 GMT + - Wed, 06 Nov 2024 10:03:27 GMT mise-correlation-id: - - 1cc3b508-20dd-4ac7-9415-6e63f8df7a99 + - da90053c-77fe-400f-949a-ed25ebd0f70f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053928Z-165bfd566cfz6tr4stm33d094000000005ng000000004n7k + - 20241106T100327Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018eq5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A34Z&sr=b&sp=r&sig=owJcN2nSkMVETWcd6sojPJcy1Ac%2Felj6Q1WpfbdBCc0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:34.5598285Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A32Z&sr=b&sp=r&sig=Ue%2FubYR63z9gjGKRRjMTWJif%2FCNcqv8eYjlBXewZBKU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:32.9027815Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:34 GMT + - Wed, 06 Nov 2024 10:03:32 GMT mise-correlation-id: - - a5d048dd-f7b5-4a5a-805c-01ff740224d2 + - 2db4eddf-c9f1-41ff-ad71-5573c7f10023 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053933Z-17f5d8496676bkwfhshcac428800000008eg00000000cek3 + - 20241106T100332Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018ffm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A39Z&sr=b&sp=r&sig=XkzvV176a%2BCVj2etbug2knrGYm0bG1k3CwoQlDhOpKA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:39.9255547Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A38Z&sr=b&sp=r&sig=4v2fiNOgjFYm1lHaS0wWNY8kBIuIhIyUzbrr4tYpdrI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:38.2167956Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -567,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:39 GMT + - Wed, 06 Nov 2024 10:03:38 GMT mise-correlation-id: - - e728141e-caad-424b-97fa-0ce92889dc07 + - 4941c7b7-bbe0-4fa8-bb57-30e7875780e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053939Z-18489d46dcc7qds9rw9wr310dc0000000640000000008nwh + - 20241106T100338Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018gah x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -595,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A45Z&sr=b&sp=r&sig=AR9E3CwRENhsfP%2FQv%2FgvOLunrsjlXs8lvcEEVnrXr3Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:45.2718419Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A43Z&sr=b&sp=r&sig=fh7xVzpF8JcurXkeZVD6Dxqbkzf5zpmhRQMiIwT%2FcKs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:13:43.5112814Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -609,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:45 GMT + - Wed, 06 Nov 2024 10:03:43 GMT mise-correlation-id: - - 51f945d4-3324-4015-becf-766e39665361 + - 6a92df31-589e-436d-8da4-3c3a39e7d4cc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053945Z-18489d46dccfkdmbtzwpeeg8f8000000083g00000000277m + - 20241106T100343Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018h36 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -729,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A45Z&sr=b&sp=r&sig=Otaiu3VxQd1HIrc7pBXhcT7Uk2vxi1YPQcDQw0wmay0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:45.7699605Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A43Z&sr=b&sp=r&sig=CUDhHSLmY1XTIDShfbmLYMMY%2Ft7P2Ix2SIDHYO65BSc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:43.9854006Z","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 connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:45 GMT + - Wed, 06 Nov 2024 10:03:44 GMT location: - - https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 1599892a-ad67-4eff-8d5e-e0ef76b62be2 + - 70522a8d-e098-4ace-8ab9-269426868109 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053945Z-166cf497cd4z4rvk0cprvnxxh000000008000000000011f1 + - 20241106T100343Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018h4h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A46Z&sr=b&sp=r&sig=ae%2BLXZ4B%2Fkm50jnSXxjcS1ltLXNzFhcyqnpwz2O2CWg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:46.0757847Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A44Z&sr=b&sp=r&sig=e9phl48VnbEL%2BXC9%2FNkHTrrlBwyBbu8gWSkHiPubH9o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:44.2759958Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -791,55 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:46 GMT - mise-correlation-id: - - f6f16c74-c48a-4a05-b149-397c152b9359 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053945Z-166cf497cd4dfx7788bvx3ssu800000007s000000000adgr - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A51Z&sr=b&sp=r&sig=6dYbzZgvI9BI%2BJbzfCCz7LCVisQi5c6Zy5kIdQpSN2c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:51.4055107Z","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 - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:51 GMT + - Wed, 06 Nov 2024 10:03:44 GMT mise-correlation-id: - - 9613f115-419a-4ebb-85ed-65bbed9f6e75 + - abb084a6-5ce4-414e-87c4-1a8f7b62b8de strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053951Z-18489d46dcc7dl74pe8mubs3xc0000000570000000003t4n + - 20241106T100344Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018h6u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,54 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A56Z&sr=b&sp=r&sig=Z9HkM4hKXTZzgILi2uG3LdPESroiR341JzuQ1Bb9srk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:56.7182297Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:56 GMT - mise-correlation-id: - - acfd5239-6eb0-4760-8f46-7ee3757e6d28 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053956Z-166cf497cd47w9bdc501r87meg00000004f00000000084a6 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A02Z&sr=b&sp=r&sig=EVxUhG5xQ8olOKZKkxnbR1SgfK%2BKRLfosHfHS9ZQ97I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:02.0796812Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A49Z&sr=b&sp=r&sig=7J5Mq7LnIJpgRRP70cP3EJRwlZxTHXTNy5H%2B3X8pLus%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:49.5903841Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -917,13 +792,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:02 GMT + - Wed, 06 Nov 2024 10:03:49 GMT mise-correlation-id: - - ecbec9ed-4ddb-4dcb-9f61-5f50f61aa04d + - 5140397f-5a85-45d2-af20-7bb7d2405e35 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054001Z-166cf497cd4ljj2qr0tamq52u000000007v0000000007rfu + - 20241106T100349Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018k39 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,96 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A07Z&sr=b&sp=r&sig=XVQbTYfxclf%2B4I0mYVF4nBycMeuqr4pIUtgx9D052kg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:07.42242Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:07 GMT - mise-correlation-id: - - a1feffb0-5c5d-4c69-a8ea-1cfcc6b7c0af - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054007Z-18489d46dcc7qds9rw9wr310dc000000064g000000006yn5 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A12Z&sr=b&sp=r&sig=LkL4tD3IBg8fAXO9hMugqYxChnwczcb%2BUg7Vjgonm7U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:12.7722709Z","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 - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:12 GMT - mise-correlation-id: - - a98a7aeb-1c65-404c-921b-e36aa6a8b075 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054012Z-18489d46dcck852hghpv4950b000000007ug00000000e234 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A18Z&sr=b&sp=r&sig=rWN4lHvhPhpFTf3YleSJra1QKO%2FVLfhKFXsqumWYIGE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:18.115614Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A54Z&sr=b&sp=r&sig=0HJ3dTMcDc3cqClMQ7iBjGmn%2FPVEg6h9FxGg8B4Udto%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:54.878184Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1043,13 +834,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:18 GMT + - Wed, 06 Nov 2024 10:03:54 GMT mise-correlation-id: - - 01d0c3ec-92eb-48a4-8dd6-241f81cdb2bf + - e6f9fc9a-d66a-4fe8-87ed-eb121f21f8af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054017Z-166cf497cd4q86sbftw3zaubkw000000083g000000002t4v + - 20241106T100354Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018m22 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A22Z&ske=2024-10-16T12%3A39%3A22Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A23Z&sr=b&sp=r&sig=pFddgzda2x58jDTXIRyjy1jA3a%2FHIhpG%2FIX5%2FXnFmGQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:23.3234766Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A00Z&sr=b&sp=r&sig=ql6gKZ%2FlhNg%2BdZlu9YgcErtQriIBJ9YgrMvWe%2BalPec%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:00.1610815Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1085,13 +876,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:23 GMT + - Wed, 06 Nov 2024 10:04:00 GMT mise-correlation-id: - - 430bb707-f0d1-4253-80dd-4037eac78cd0 + - a7fad385-8c58-42d1-9cf1-b29bf93cd8c0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054023Z-18489d46dccj85r8e2f8g29m2800000007x000000000n1dp + - 20241106T100400Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018mu6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A28Z&sr=b&sp=r&sig=1jUXP7g1qaiBCbSElPGXvKqv%2FaQh6edZRozVGtuGinI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:28.7076882Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A05Z&sr=b&sp=r&sig=SM4mtCTYdf88hX%2FTBVHk1E1FY8NFVi3haoXq6rhYe4c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:05.4594423Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1127,13 +918,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:28 GMT + - Wed, 06 Nov 2024 10:04:05 GMT mise-correlation-id: - - 978ea342-ca79-4352-b63b-f4450a599c14 + - bce5a5a3-d343-4ed7-b0b3-ebe375286583 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054028Z-18489d46dccp2df8e3m20gzz8w00000007x0000000003g6w + - 20241106T100405Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018nks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1151,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A34Z&sr=b&sp=r&sig=eJ5xoyouKla3JMol7LQWkF88PEDf%2BOVbLu4X0o9wsRc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:34.3401093Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A10Z&sr=b&sp=r&sig=BHQNc%2FmAJ9U3MTCNSdnRTUpUBZNgoIlxSd66BEf0b%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:10.7702046Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1165,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:34 GMT + - Wed, 06 Nov 2024 10:04:10 GMT mise-correlation-id: - - 56d01ab2-742d-47bd-9b79-ad45ee526824 + - d9b48451-61c1-4933-93d2-7946ddb822dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054034Z-166cf497cd4v8snbtm724w4g2c000000081000000000anyt + - 20241106T100410Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018pbh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1193,13 +984,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests/delete-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A34Z&sr=b&sp=r&sig=bOmNjpgvsfdytA4mAOr%2BFfaJFmayu7XIuJCMcIlhR%2B0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:34.6966283Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A34Z&sr=b&sp=r&sig=CKJHpm5QVYFeHMMRYEs%2FcdhEyhqsWFQEuy3bCd2PWqE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:34.6970057Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A34Z&sr=b&sp=r&sig=WD%2FJfXOdmVuPxtKeybC3m6X6NpxbB%2FJoamhC4wpLM0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:34.6971027Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:09.546Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:28.839Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A11Z&sr=b&sp=r&sig=wQRloruvzCkwoIFd8GWOuhcIrOAuey3RNH8I8v7L4iI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:11.186349Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A11Z&sr=b&sp=r&sig=MB%2FaIKcjvfvH0uTOC5MkZEtqEg7Whg9T2BPm9h8wPl0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:11.186605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A11Z&sr=b&sp=r&sig=kukVXLP%2FPO6IfNhgctxY6wWe%2FaecoifTX%2FtPdKyDC%2FE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:11.1866832Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:03:13.93Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:08.282Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1208,17 +999,17 @@ interactions: connection: - keep-alive content-length: - - '2776' + - '2767' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:34 GMT + - Wed, 06 Nov 2024 10:04:11 GMT mise-correlation-id: - - 37b2321c-f555-486f-a1ca-9f3c4b65aa4f + - 718043f9-5785-4626-8946-d51956353263 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054034Z-166cf497cd4jdw4g4y9hv6ku6n00000007w0000000005wq6 + - 20241106T100411Z-16bf8d9b4c7zbtm7hC1BOMhr0s000000064g000000018pd3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1236,23 +1027,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6429755Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6429755Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d9a7848-2bab-4c9d-93a6-85cd47e97f65.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":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:34 GMT + - Wed, 06 Nov 2024 10:04:13 GMT etag: - - '"c501b772-0000-0200-0000-670f516f0000"' + - '"fa00f418-0000-0200-0000-672b3ed10000"' expires: - '-1' pragma: @@ -1268,7 +1059,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1114C70186DD432CB3ACFD1420FC011C Ref B: CO6AA3150219051 Ref C: 2024-10-16T05:40:35Z' + - 'Ref A: 3E1D7DBE5075403BB6DDE10A8677A325 Ref B: MAA201060515017 Ref C: 2024-11-06T10:04:13Z' status: code: 200 message: OK @@ -1282,13 +1073,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A35Z&sr=b&sp=r&sig=6g0%2BXThJK1yJNcH7muoAsMZq24aQRjhVwlZSTenRwzQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:35.5674435Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A35Z&sr=b&sp=r&sig=H3qUw%2Ba1qKif4cOPrAvg03j7awR3fUm5jIhqXXT6Z3U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:35.5678909Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A35Z&sr=b&sp=r&sig=BZUsKAxZDGPkDILOV21htU%2B9%2BFXQnXMvzbG80TMICls%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:35.5680739Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:09.546Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:28.839Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A15Z&sr=b&sp=r&sig=%2FMVTJjwhTV6vZYG6sgMSJVdoOVlK8TWBURasyx%2FGALc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:15.7235459Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A15Z&sr=b&sp=r&sig=%2BPSKAnFl8ubY6Kj9re86O2cgZkn94KTXPrVbcT3acCg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:15.7238214Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A15Z&sr=b&sp=r&sig=slFID11L3IIVn%2BAWGeDmkhSl%2F91SNrtePPrOSynzu2s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:15.7238994Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"delete-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:03:13.93Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:08.282Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1297,17 +1088,17 @@ interactions: connection: - keep-alive content-length: - - '2786' + - '2781' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:35 GMT + - Wed, 06 Nov 2024 10:04:15 GMT mise-correlation-id: - - 2569c104-4f04-4b53-b447-dbb4d5b7ba59 + - 0d2bd156-dc1e-416f-be89-f2aab2de5e28 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054035Z-18489d46dccfp7rz6a82yt7pbw00000007x0000000008yn2 + - 20241106T100415Z-16bf8d9b4c74rffhhC1BOM0zgn000000064g00000000ze62 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1325,23 +1116,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6429755Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6429755Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d9a7848-2bab-4c9d-93a6-85cd47e97f65.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":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:35 GMT + - Wed, 06 Nov 2024 10:04:18 GMT etag: - - '"c501b772-0000-0200-0000-670f516f0000"' + - '"fa00f418-0000-0200-0000-672b3ed10000"' expires: - '-1' pragma: @@ -1357,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D65792DD17E459A93D81059EB0E16DF Ref B: CO6AA3150219011 Ref C: 2024-10-16T05:40:35Z' + - 'Ref A: 6FB21B74DA5E452D8A73A0CF66A9AE36 Ref B: MAA201060514017 Ref C: 2024-11-06T10:04:17Z' status: code: 200 message: OK @@ -1371,9 +1162,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1386,15 +1177,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:40:36 GMT + - Wed, 06 Nov 2024 10:04:20 GMT mise-correlation-id: - - e7ac9d5a-fc3c-4921-9207-9f0331c77602 + - 68522bbb-c2f2-4fe5-ae12-fddc7afb4843 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054036Z-166cf497cd4xh8zq4d721105qg00000007s000000000hr00 + - 20241106T100419Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006m55 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,31 +1209,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A37Z&sr=b&sp=r&sig=9lZG2VskKFYCYWeUfBX%2B%2Fiz3vY0%2Fp%2F4JAXJu%2FGNFpLU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:37.789169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A37Z&sr=b&sp=r&sig=65mUfRMys5CA4YIt2V%2FWuvzL1%2BxYJXUAEw%2Fd3lOnVD8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:37.7887068Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A37Z&sr=b&sp=r&sig=NgLf%2FyD8EDrlrHcx8ptIEIH8pb0%2FbZuZ7ZoP0kQf9%2Fw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:37.7893393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A37Z&sr=b&sp=r&sig=1lm9GA1ESFLy6f7bmwr5B0LssY9Fyse9S5dfRAJXkmY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:37.7895036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A37Z&sr=b&sp=r&sig=9QPLGOv3mvEnlQaT%2FpwFA5Y7RN3kW%2BGvNECke5xpyPg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:37.7896661Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A10Z&ske=2024-10-16T12%3A39%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A37Z&se=2024-10-16T06%3A40%3A37Z&sr=c&sp=rl&sig=xB5fPq9QFrKh%2BlbeK03s9jOFirDKZ8vbf8EvDB6ulw8%3D","expireDateTime":"2024-10-16T06:40:37.7898314Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:37.714Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=eBzYgY9vig2gRDzAPpuAvRfR6eKfoYO3cKCUznNUP7Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1062735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=4PGOc4z4l2XlQHAwBQBqN9FaSjJQbpnb0Bz2MZxGQrU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:24.1050761Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=ewaoNub0%2BW1xv01SQn2nbFVDQxuW221OMUEiGIiudj0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1066966Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=PSvfVI9kfzSWuVec5Lq%2BBMsLJHNkl4orv5XebgljXY0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1070776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=A0iqDVuAYwMjmE%2F51BSKEYT6SLQynYgt%2FWEQZ5IFXm4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.1073576Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-07T02%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A24Z&se=2024-11-06T11%3A04%3A24Z&sr=c&sp=rl&sig=UzNDECV3PpDzM9wdVjkKBDZlcuj4O3zi6waAOFuiQOk%3D","expireDateTime":"2024-11-06T11:04:24.1076805Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.025Z","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 connection: - keep-alive content-length: - - '4880' + - '4855' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:37 GMT + - Wed, 06 Nov 2024 10:04:24 GMT location: - - https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2022-11-01 + - https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2022-11-01 mise-correlation-id: - - afebcd1c-4c19-4a65-aa95-97f57e3f15d8 + - b3f32863-0ae3-4dd3-98a0-ba687b533645 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054036Z-18489d46dccd6w2hyw4dcpanpw000000082g0000000006b4 + - 20241106T100420Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006m8r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1251,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A38Z&sr=b&sp=r&sig=ya8IFmb%2BpJPBuW67w0CzrAtjkEtDHERWVYIB0t0yiF4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:38.2055543Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A38Z&sr=b&sp=r&sig=CFM33P0A8%2B9CNRHJwxhNeLl5DxOmGULbrZr99xwCtrU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:38.2051873Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A38Z&sr=b&sp=r&sig=xXIFI%2B%2FiwcISBw9dqpviSGb7HxoBipoFFu8adIGk370%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:38.2056901Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A38Z&sr=b&sp=r&sig=C2QWROO2fX%2FBKdf59w3LY91wlRkPDr68Fgq0bRjC8QE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:38.2058285Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A38Z&sr=b&sp=r&sig=7GzHyl1QdeNqeOwCtv%2BzXAF6CdbG5R%2FauvUKRByPWTA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:38.205962Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A38Z&se=2024-10-16T06%3A40%3A38Z&sr=c&sp=rl&sig=VjoDbRYc9WNPSAYwf34B4zK64vL1YvTMwctFmTyk12Q%3D","expireDateTime":"2024-10-16T06:40:38.2060969Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"NOTSTARTED","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.104Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=mWb3gnPeAZki8gWi6sfscvsX%2FZbP8%2F%2Byv214k2%2ByIbc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.6955934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=xhClxmeRzYMKZjH6Gw3gSBWJRQwwKd8VwyDK4QZVIuw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:24.6951698Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=NgHRunb3K%2Bnn%2BSAcVI155APyFTQKsGFvI7SMla5u97Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.6957681Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=8rwfKqjBK2j0crIXtraswpiE0CItuPWTOMZGJxGiYFA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.6959385Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A24Z&sr=b&sp=r&sig=20jjZN2GIW9Ts8GF1ntlByrqeAlOor90G1UT4q%2BYlUQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:24.696106Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A24Z&se=2024-11-06T11%3A04%3A24Z&sr=c&sp=rl&sig=3VtJefL2p6gCYxmjgyGSM8d8TBz8T3Es6PZe4Ai32hE%3D","expireDateTime":"2024-11-06T11:04:24.6962724Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"NOTSTARTED","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.503Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1265,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4905' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:38 GMT + - Wed, 06 Nov 2024 10:04:24 GMT mise-correlation-id: - - 43e3e41b-55c2-41b6-8aa2-12cb33cfad01 + - fcc3dd19-5fbf-4e22-90df-599cf7800b6d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054038Z-18489d46dccp2df8e3m20gzz8w00000007u0000000009krv + - 20241106T100424Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006mwk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A43Z&sr=b&sp=r&sig=RhVvZ5xxDW2F%2FgbjFlDG3KLqGbQ4zLkyjgOH9rgWZlA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:43.4389743Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A43Z&sr=b&sp=r&sig=W0VvYnyq3sHXtXNApBJb1IZJKTCJjU0YBZ6AEt%2BUomo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:43.4387814Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A43Z&sr=b&sp=r&sig=NoaU3ZlLgmfv2epa75%2FBoSakiZwM9FyAgB6RKIUP7vg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:43.4390284Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A43Z&sr=b&sp=r&sig=pGiIHd4Ns4Dlk5qSmfJ6hb0pKlDv3XzqSoN5wC%2Bvm5c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:43.4390784Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A43Z&sr=b&sp=r&sig=WLlAalM5kVz3YD9bQ0cQTZLiVuu9oz3vDuB1tcawJ6A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:43.4391271Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A43Z&se=2024-10-16T06%3A40%3A43Z&sr=c&sp=rl&sig=KV79JH548TTLv4YbZjB1eqmhKYWf0mFDBuemZfpF9DU%3D","expireDateTime":"2024-10-16T06:40:43.4391731Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=oy%2BPIXtCW%2BMIPdmt97z7ty1RmdAcg0peiaxdwsheFGY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0482432Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=c26lV6ApKr1%2FHvSiwsRM0fkw2yia0H8SuzF2X%2Bo4vL4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:30.006185Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=zqyaG0Jl3y18dbz43cL9kxvWkOMqaVgRF0g3lTZMFR8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0486089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=QeMmVDf0lvcJC9W83UPc3K%2FOwyyEtkDQ9D9aYZb8pJ4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0487987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A30Z&sr=b&sp=r&sig=C23%2ButrImNLd1BS7hjtUFZTnBCgao31D60GMcOQVQcA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:30.0489858Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A30Z&se=2024-11-06T11%3A04%3A30Z&sr=c&sp=rl&sig=ipsMExGzDruOdFdWs3i5eGYNkkH5LihC9KIuKx3lflc%3D","expireDateTime":"2024-11-06T11:04:30.0491752Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '4908' + - '4905' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:43 GMT + - Wed, 06 Nov 2024 10:04:30 GMT mise-correlation-id: - - 9ad0418a-b78a-4d10-8848-e9f57f2624c5 + - cd50308b-efa5-402e-a3e2-271061575b30 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054043Z-18489d46dccggs4rh24eyxmvec00000007r000000000m1as + - 20241106T100429Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006nrr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=8W8WJELtY6NU5HuAoKir81lfFToUuRy3%2BJ6AWQT6vVw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:48.7556545Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=EcCLtjlRF4LWhxSe8xUsFmNG50rIfIwy5AexOEgrj2o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:48.7551731Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=iYQeTKDuFA0SiKL88%2FUOG8hqpkMJv3qdp8QsHb0pHwI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:48.7557803Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=KGVuYij4754EBwaiDGjoiwJ9LTSCt0wCNVQwW1RXFVg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:48.7559185Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A48Z&sr=b&sp=r&sig=xsxyuz8%2Bynicq41eZiBpm%2B1xxd%2BRtIY5waKT2jyX%2Bzc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:48.7560599Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A48Z&se=2024-10-16T06%3A40%3A48Z&sr=c&sp=rl&sig=WzLvTWycB6dklviPOssH%2BxSpNbfBHNiDsH6i%2Fuialpk%3D","expireDateTime":"2024-10-16T06:40:48.7561919Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=NLidWMoo2vAZuBMNkDwYwGWeg4bRcJxzOpd%2BfcdqzHs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4654545Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=aiPs6N7993lkQzm%2B0UaOLAGfy%2FobO%2Bb5wJDYKzTP000%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:35.4650685Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=9TUqJ7dsc1HuzYLb7vgNu93zutwmW2ii492j8pScll4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4655521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=PUknDgnzC1A%2Fc4w7xXEsRNsQa3VjpSz%2F0M5qaKr5QBs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4656481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A35Z&sr=b&sp=r&sig=EB3%2F2lvKofbV7i64%2BBnIxrpJRI1kWdE%2FNqjtw12FvB0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:35.4657913Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A35Z&se=2024-11-06T11%3A04%3A35Z&sr=c&sp=rl&sig=RXTjaB0jl%2Bzt9BIw9JrlFoUwRYbIPfq3h71ahAEgiDc%3D","expireDateTime":"2024-11-06T11:04:35.4659114Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1558,59 +1349,17 @@ interactions: connection: - keep-alive content-length: - - '4916' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:48 GMT - mise-correlation-id: - - 20dccc61-85ac-40ac-af10-c1adc859ecb8 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054048Z-17f5d849667qg6t9uvfp3m2p2w00000005sg0000000025qb - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A54Z&sr=b&sp=r&sig=3OzwJE%2BT2OBrxCwzfMROHaUfxcjVr3D0VgkXrjhtSBE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:54.0332292Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A54Z&sr=b&sp=r&sig=1MP7gx0zDrrzdRYg8kBWqOXl%2FOBTgdWjqIPyZclnhmc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:54.0328875Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A54Z&sr=b&sp=r&sig=ZVnn3MUqtymli4lLIz1EJsg4L2R%2FnuaIDC%2F4yugD%2BOs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:54.0333434Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A54Z&sr=b&sp=r&sig=sv4ldBGH8rOP3s9xH2poHGLUxrHp66%2F%2BgeIRxk9TeBg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:54.0334404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A54Z&sr=b&sp=r&sig=RMQkkdseu%2B2bGP7UBqC9RBrz8xvWnnTRQbdT9qyVZBQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:54.0335368Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A54Z&se=2024-10-16T06%3A40%3A54Z&sr=c&sp=rl&sig=DIYa0LAwaNhrwJXMTDc7KyAA1ZT5V3mQXohDr4lZgEI%3D","expireDateTime":"2024-10-16T06:40:54.0336352Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4916' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:54 GMT + - Wed, 06 Nov 2024 10:04:35 GMT mise-correlation-id: - - 1f80b3b5-1956-4c1d-a4f3-11f286dffe7e + - 5b636e6d-8c2c-48ff-9e1d-edc286c78d04 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054053Z-17f5d849667dlw8817rng82bvc00000006d0000000003gym + - 20241106T100435Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006pv5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A59Z&sr=b&sp=r&sig=ZjdFVuzXcb39kTH%2FqOerFsIsJti6eko76fpTD3nhhjk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:59.2009758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A59Z&sr=b&sp=r&sig=FSz5xX8aK16fpgyH4f86IOYrTFKmwk4uYkpPhoOPxsw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:59.2007619Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A59Z&sr=b&sp=r&sig=FbakMBot1%2Fjd3TXRKS87EFTmU6m7vdRWUrzZsksiJc8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:59.2010666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A59Z&sr=b&sp=r&sig=E93zr4RDbYEm%2BSsre4v%2BSTfy5znWeKxWJ%2FrDgN7bqCc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:59.2011518Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A59Z&sr=b&sp=r&sig=yl0OGpWN5ncNyc76luWWR41ineeTqR2OdNnyrNAThgo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:59.2012362Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A40%3A59Z&se=2024-10-16T06%3A40%3A59Z&sr=c&sp=rl&sig=7UC7Y3WlJihaypSL%2FGIMPBc7i5cjW1gTxkgtpmJeiB0%3D","expireDateTime":"2024-10-16T06:40:59.2013185Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=cHl%2BRRqm1mO7QIPjSppFdqwD4X9sT2K0I569A87XFhQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8065734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=1IVDxFt0iWBgI7SEKrUyfHZdjDJ5ZK924dQP7Cne0LU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:40.8057077Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=94xt8bawzB7xTj%2F8S3ycQNHy%2FV%2BrUOIFYa%2BBiYFrzW0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8068815Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=F7EFmvlN5j7D7ajMxKKfq7J81lsriHGuiv3Xsv3TZrg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8072021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A40Z&sr=b&sp=r&sig=SV1aO8C5ZfmjVbsqKVohuvodGO2Ikl68jvERc89ZhJE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:40.8076307Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A40Z&se=2024-11-06T11%3A04%3A40Z&sr=c&sp=rl&sig=p1xMVPlOw%2BdjCi9LJOIZzF5DNZmK5hhYagoqyYY90Ak%3D","expireDateTime":"2024-11-06T11:04:40.8079984Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4912' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:59 GMT + - Wed, 06 Nov 2024 10:04:40 GMT mise-correlation-id: - - 619b2a84-7bf6-49f5-b247-b785dc73f53c + - a4fecd0a-5e62-4100-ad16-5e816b415784 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054059Z-165bfd566cftkzshba71wsxr9s00000006f000000000e91p + - 20241106T100440Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006qux x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A04Z&sr=b&sp=r&sig=8ag7XK01jH96mnlc1nFuUuwkshWeX6jrpCGKTXUFz4I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:04.5742096Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A04Z&sr=b&sp=r&sig=t7%2B7CPztL8dJN5VqmqNNCn6VbrBCyoGOf1dhVVHynqE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:04.5733896Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A04Z&sr=b&sp=r&sig=2fTCtc7NGXGTTyzur5BSWmoZiIJf%2BiX6VSM%2BfJS8kDk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:04.5746085Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A04Z&sr=b&sp=r&sig=LhfCZEAari6NHVDQP9SxWVTcy569AcCnP9ykmnBJ5Hw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:04.5749685Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A04Z&sr=b&sp=r&sig=0ftkmvvtfY23FsgE%2FcNyrBHKnZ866d6QXIYbixETg4Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:04.5753281Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A04Z&se=2024-10-16T06%3A41%3A04Z&sr=c&sp=rl&sig=Mcvl8X6%2FMhdF%2Fr4hSzDhL1YJxfh6odG4e17Je9vf4uU%3D","expireDateTime":"2024-10-16T06:41:04.5757296Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=%2Ft7o7QXNJi0G5H%2F%2BSRB8nI4792TLaqcwT1BXkwFW6rI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.1180851Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=qTKl0kEb3a%2FypmRYbXBk15He0drlBBqYMkp5RdLup6I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:46.1178144Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=fB7HNFL7zKYS4M%2FvSzngXltDhJALYA3AMSqxX3ziwk8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.1181613Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=%2FZ9%2F2AFWNQo5FpHMfhooqPW%2BZ4%2FVbsrTkH%2BxurfAk7g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.1182376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A46Z&sr=b&sp=r&sig=yGCr9WZj7bL%2FKYaeZ5yuVaC8dMsEFldJZFXGoholivk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:46.118314Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A46Z&se=2024-11-06T11%3A04%3A46Z&sr=c&sp=rl&sig=SdSHphFZSMV6MH3pofZqZsBr%2BnUVVybA%2FqvZIIdXdfc%3D","expireDateTime":"2024-11-06T11:04:46.1183871Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1433,17 @@ interactions: connection: - keep-alive content-length: - - '4912' + - '4919' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:04 GMT + - Wed, 06 Nov 2024 10:04:46 GMT mise-correlation-id: - - 3d1187f5-e635-4979-bce3-de87782c7ac1 + - 5edf86ee-2b53-4fe3-9550-59f9940a66e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054104Z-18489d46dcc5trkwxb4ya4w12000000007q000000000kwvn + - 20241106T100446Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006rpb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A09Z&sr=b&sp=r&sig=zkZ6VNcaVSUtBrEnvajBj6a6%2Fl6gGwftdKHZppy8SN0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:09.9260542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A09Z&sr=b&sp=r&sig=x00fVLnPcpTPfuaac0Ek7WGan6OkCpgt26IRmPcgNX4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:09.9256369Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A09Z&sr=b&sp=r&sig=gE3PUTd48Oq3G5JEe69PYNNq%2FHOebpwtHiBagSGSnC4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:09.9262265Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A09Z&sr=b&sp=r&sig=KXUv1uWuOsqx00z37%2FzkOPvuE6RcR9DmL8Wmt%2BKHxaY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:09.9264023Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A09Z&sr=b&sp=r&sig=56bog0gcEHtUAQ4vMczSjAE7X7xQ7mrculXxJmlSaNg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:09.9265725Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A09Z&se=2024-10-16T06%3A41%3A09Z&sr=c&sp=rl&sig=EgK8Q4pbvkHaXm%2FQxrCf5YKxezEwc8vgDAHJgt%2BmPTE%3D","expireDateTime":"2024-10-16T06:41:09.9267368Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=xgfw5NP1Yg4eu15vjPNWCyMkYAqAbacF1pm22PJxmZ4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4153368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=j8lKJjry03z9ysUiJ%2BpsAr5LYL8lWqgJvISfzkcRZMg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:51.41508Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=PH3fCXjjWykzgdRaZrPINCf7dOg5LzpuTlhEHijfQ0s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4154212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=cQUFn72D6mpdS6i9hllTuYRUGZxlfOZxAeoMtSR7dqU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4154917Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A51Z&sr=b&sp=r&sig=X1c8pdRV3U0tQP9ZP0l2XJ4WgV8hU0wl017Vff3go0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:51.4155657Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A51Z&se=2024-11-06T11%3A04%3A51Z&sr=c&sp=rl&sig=V0cKFzp%2BxUsAwfrtJ%2FGM4%2BC2sKSsQFMN9qGNPhePhPg%3D","expireDateTime":"2024-11-06T11:04:51.4156348Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4912' + - '4900' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:09 GMT + - Wed, 06 Nov 2024 10:04:51 GMT mise-correlation-id: - - a286305a-c5c9-4322-9aa4-4686ad94433a + - ced69fe6-eb76-44bb-be8e-f6d4754e916e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054109Z-18489d46dcck852hghpv4950b000000007vg00000000at7c + - 20241106T100451Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006sd3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A15Z&sr=b&sp=r&sig=VwBGm4hJw2oXL1ectiMVsnHdMOM3yyphpi7RAmpd7ak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:15.3169531Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A15Z&sr=b&sp=r&sig=cIeK0WlXPW%2BwsEpwflVBs87fchWZCttgmUEDQgz7jAc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:15.3164077Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A15Z&sr=b&sp=r&sig=W6DcVhMudtSsQQoOuxTeJru3NvQoROLqtUzZQPovhB4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:15.3171557Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A15Z&sr=b&sp=r&sig=M0sHRS%2FROicOdBWJqI2aJ%2FHtpSCX14B5a%2BsD897NSww%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:15.3173737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A15Z&sr=b&sp=r&sig=P7ptVhtcDYtYQx5MMU7fKtYbN9P7QbjJmWsSJvry5IQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:15.3175775Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A15Z&se=2024-10-16T06%3A41%3A15Z&sr=c&sp=rl&sig=PBLnNSryto7yU%2FvHNVO8MR1W%2FD%2Bok2RaB4llR18PpYM%3D","expireDateTime":"2024-10-16T06:41:15.3177972Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=ok23%2BQ7pYw2XiKZmBQA6DAUPqyry%2ByP3xHBvYWOOYHY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.803163Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=h6InQ%2BXnGOzAdU26hPk5DIIMgJeaxg9qA8dmCJLZpfE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:04:56.8028837Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=FzsO53Cr0qmoN%2FEmeq4t0l3MIw5caS7nKWIfQgcR%2Fbs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.8032607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=HLLERfs3URCKL7C0fbyjjGhEyncbxSVIncWG%2BcifuDU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.8033622Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A04%3A56Z&sr=b&sp=r&sig=X8NxVUqpoSfyvNfnDBOm8jQCj6FMEn2Ue6DJqPC6vwE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:04:56.8034608Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A04%3A56Z&se=2024-11-06T11%3A04%3A56Z&sr=c&sp=rl&sig=eOSeXpDGdVFobgafSMoOK7WRWb1xb16jXKoyxHt%2FN8U%3D","expireDateTime":"2024-11-06T11:04:56.8035587Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1517,17 @@ interactions: connection: - keep-alive content-length: - - '4914' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:15 GMT + - Wed, 06 Nov 2024 10:04:56 GMT mise-correlation-id: - - cb3ac991-f0ba-4f98-a09e-375ada982033 + - 9c74e4ce-f69e-43a1-83f2-7f34bd26955c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054115Z-15484bdf45772jkjsy4g2ytrdw00000002v000000000gtgs + - 20241106T100456Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006t57 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A20Z&sr=b&sp=r&sig=4sfrtSSN17jPg1%2FbwErLGJTlxjHmxPTtlttlx4XdXRg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:20.6484751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A20Z&sr=b&sp=r&sig=XtdDZfU5wiXUFZgQKZ4dW8%2BC%2FMaDoREituXls%2FYixLc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:20.6481239Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A20Z&sr=b&sp=r&sig=Tifisq8WK%2B8z4jDbUGn%2BfLhXnzNwORNnShsel52kALU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:20.6485584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A20Z&sr=b&sp=r&sig=FO0rNbcwjZ8ihBp9046PyapeZWDQRXzGitrU2VwsR3k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:20.6486498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A20Z&sr=b&sp=r&sig=WOQV%2BSbobySmIrpwALwCMERTobvLHPAbWpYzUcysDto%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:20.6487463Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A20Z&se=2024-10-16T06%3A41%3A20Z&sr=c&sp=rl&sig=KKKsjdpyPvG1W5u8VDM2o3%2BclujK4C3I%2FOy%2BeWTB7gM%3D","expireDateTime":"2024-10-16T06:41:20.6488238Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=6wKjMJdYZ1OlPp%2F4%2Fhnb12KznTUoBhSqVglc%2BOAO7zE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1234135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=22GR%2FaBsgTD0vcfTMnBXnI9LkoQmByw00muz09U59TQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:02.1230576Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=d%2BucWWLwiEk3KWRhcib53O1niPCQyUhYyTQ6WHanSwo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1234888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=pLNrkHnAsTSWmE7UVKRjq%2Fe92tu5pNDNFr5hPMoixyc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1235641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A02Z&sr=b&sp=r&sig=VuyjDUYJmE04id%2FfbDR%2BefJVVEp5h22Lc%2FzfgtNXDrI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:02.1236348Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A02Z&se=2024-11-06T11%3A05%3A02Z&sr=c&sp=rl&sig=ySm7yhYVhavcEALPOR1aySfkP0X1LQMVKWqXuAaC8kQ%3D","expireDateTime":"2024-11-06T11:05:02.1237036Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:24.722Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4920' + - '4912' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:20 GMT + - Wed, 06 Nov 2024 10:05:02 GMT mise-correlation-id: - - 039d5ce8-282c-4308-9c38-e6c29b31805a + - 16bde2c5-f1d3-41a7-b0b9-7f6cfe92cf17 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054120Z-17f5d8496672vwgf4k1huv853400000006t000000000e03p + - 20241106T100501Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006u6d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A25Z&sr=b&sp=r&sig=%2BJ1%2BvyIQhwXtxouOYgCyD1in55Q9Odnbpip3yuLvGpo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:25.8628763Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A25Z&sr=b&sp=r&sig=6AZfbroVjyNwrFHV%2B%2B9498AyXz2amTJYPnaZSK0iDQQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:25.8625219Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A25Z&sr=b&sp=r&sig=JkfP7BoGoGSe1TDZFUYDKR%2FhjIiv5Oqnc%2FDHIMMupSM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:25.8630169Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A25Z&sr=b&sp=r&sig=68XsVMiQGK%2FunNU38FpKbPt7ua1ZJm0V04P1dLkglis%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:25.8631586Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A25Z&sr=b&sp=r&sig=G51Kn2flX8UKUCj1wrHyA7PT6UAvWWIaDB9XceRYWKE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:25.8632999Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A25Z&se=2024-10-16T06%3A41%3A25Z&sr=c&sp=rl&sig=GUzAabD83GZgYmvTi%2FOz1qfI7pbQrWcZod9OmIp7GQQ%3D","expireDateTime":"2024-10-16T06:41:25.8634441Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:38.291Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=0YoyzD5WCH%2BS9ve%2B7%2FuV7wExP3%2FhLaah7v3pYuHNMGg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4252486Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=aDRCOc%2BU5StKcQ91CbiokceQNIMIscKvbT2PKjijEYA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:07.424986Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=o53j8ubK0%2F1f4eUTvZRGKnIr44DRvqdQtOF%2BFWkEXqs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4253505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=zbYhaxhuzLH7nidF3Luxw%2BGMmRcQudHnWYP%2FlQyryL0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4254498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A07Z&sr=b&sp=r&sig=272G0%2F4VjItIRiuizdkfNjz9WMftJ0d3Bzp6kcHcsCw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:07.4255618Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A07Z&se=2024-11-06T11%3A05%3A07Z&sr=c&sp=rl&sig=zVUUXKkTWmPqaBY8rA83%2F4Q%2Fb1YpNpx49jGBxnOG5tk%3D","expireDateTime":"2024-11-06T11:05:07.4256532Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:05.292Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1856,13 +1605,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:25 GMT + - Wed, 06 Nov 2024 10:05:07 GMT mise-correlation-id: - - 636867d7-e98d-4c0f-94ff-2b71265cbe0b + - e8845645-6524-45a0-a056-159d72cc90a8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054125Z-15484bdf4578qr4zk1588ep9380000000340000000008zv4 + - 20241106T100507Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006v6y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A31Z&sr=b&sp=r&sig=fAOwf6jiWusLhcNruU90jkKQvkT8%2BW3drdzrWQQUGpA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:31.0647165Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A31Z&sr=b&sp=r&sig=vYvBpu2o8Vi2qtiS2s5Cq4ztMlCLSs2wnVXEzg42u5I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:31.0642791Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A31Z&sr=b&sp=r&sig=GcOxXrn%2Bo188%2FcstQk%2B2H9LnkRv6SJk4QvrkoCNUKbc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:31.0648884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A31Z&sr=b&sp=r&sig=kkjp5roGXUndufJgUp2lo%2BlKQe48uvF1Vq0Nw2DdZcQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:31.065067Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A31Z&sr=b&sp=r&sig=MlTr7WiAUqxDtZiOZ8fEp82bvO5vV5cPx8TVkefAr78%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:31.0652387Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A31Z&se=2024-10-16T06%3A41%3A31Z&sr=c&sp=rl&sig=O16AGvLMh8T%2F6%2BMtrfuRwsd4hAydkgAyaaK5iU7QsaI%3D","expireDateTime":"2024-10-16T06:41:31.0654122Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:28.446Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=oFIkSD0Xjmb0tRpbe2Z4WHbjH%2B2IAzLOnnDgjmEAQ5o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.7455955Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=3jNHDIUoW3ORLxE7vgtUdHeHycgr37beHtELF%2BWVUwQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:12.7448481Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=8iAqq%2FMs9W3FFzb6M%2BV6GvrO%2B4bXtCYIuoZYW3BwZQI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.7458037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=2ys7SJrorm%2BNk27tf7SP%2FbgT4hqfVhxSTGoP7CY7JdY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.7459895Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A12Z&sr=b&sp=r&sig=aBSiuIK0zh64dandhxm1vDqwnt%2BJcedEp5HghMOUx2E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:12.746187Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A12Z&se=2024-11-06T11%3A05%3A12Z&sr=c&sp=rl&sig=NhHUwLuKBAGY726mMDa%2BFMoIf%2FW6R%2BIpbgkQBW0LDFs%3D","expireDateTime":"2024-11-06T11:05:12.7463736Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1898,55 +1647,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:31 GMT - mise-correlation-id: - - 4dda0bb7-fdfd-4c41-8e66-10c8c9d092d3 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054130Z-166cf497cd4dfx7788bvx3ssu800000007ug000000004580 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A36Z&sr=b&sp=r&sig=KQitJroUW7yoabyWVbqUCqTsKuu9xQ23EVX92lJSY3E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:36.3835535Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A36Z&sr=b&sp=r&sig=B%2B6X0vNvu9JFHk4EUIEviAc%2FqyUxHHAU3tdJIpFlhWc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:36.3831665Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A36Z&sr=b&sp=r&sig=8zdsv44HCGImbWXjvApaBjsBoHRYkmuOfISFWrW7h2U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:36.3837457Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A36Z&sr=b&sp=r&sig=RJxcnyM1gTVhirVrb2z4JFnzyeIWEyJqFVafcg71Kbk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:36.3839082Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A36Z&sr=b&sp=r&sig=T%2F8hSAOZt0dR59mb6D3YYHoGCz7GqYou%2FN2Z4jgYxG4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:36.3840757Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A36Z&se=2024-10-16T06%3A41%3A36Z&sr=c&sp=rl&sig=MgrAFtrxXq9U6xwdqHbKn1fG8XdqSgEKmDa%2BlPYmk6I%3D","expireDateTime":"2024-10-16T06:41:36.3842396Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4907' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:41:36 GMT + - Wed, 06 Nov 2024 10:05:12 GMT mise-correlation-id: - - 092e0b9f-25bf-4191-99d3-0f748a27b5db + - 04cbf125-690b-4483-bb63-ebdc7d09b627 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054136Z-17f5d849667h7djshftd289dx000000007s000000000ersy + - 20241106T100512Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006w38 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A41Z&sr=b&sp=r&sig=Yd0pgtFrj3e2r8Z0L%2FdI6G4MqtMZNF06qJAW5lwcDm4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:41.6276786Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A41Z&sr=b&sp=r&sig=4chC2ST1zXtTzSIZ1SHrjqCETQlaZipy4CKQMmEP1VU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:41.6274413Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A41Z&sr=b&sp=r&sig=V1DqkFCHqsO%2BBG8B7gk5NfMOD9xGrWFTw998geMbb%2Bg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:41.6277526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A41Z&sr=b&sp=r&sig=L8OxBasV00nSrs35k3XMkJzArocMy4KBXOgBKK%2BQWwo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:41.627829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A41Z&sr=b&sp=r&sig=8iNahR3vmqbR6z0Qo9WzijadwQYxkvCCmpY2w74hFcY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:41.627904Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A41Z&se=2024-10-16T06%3A41%3A41Z&sr=c&sp=rl&sig=sOqk5Fac2BnMvrtrsrXDhp73jM5O8HyFAmDiuRsl2Q8%3D","expireDateTime":"2024-10-16T06:41:41.627973Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=1ABFEY%2Bnt628UrFDx2gwhVdXvtYP2MuLTmLBS3HQk1U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.0866102Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=0wpgTXWuheIfnZOTpV5fHmPjjgJUchCv9dH97%2FcPL9M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:18.0861193Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=pzAzX0IBbNVlsDXtLgW7f2owXBCkoDzILN0bgqVB2pY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.086814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=6EduQKl1UTsi%2FqYnaozPgKkMwxs9NCSFee7wnTFLmy4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.0870074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A18Z&sr=b&sp=r&sig=8mJFwbiZU9URbhfUA0y8kXGvgF26FlHV5yYlqmFPe84%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:18.0872046Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A18Z&se=2024-11-06T11%3A05%3A18Z&sr=c&sp=rl&sig=DUbHLhfQfPGmGNx8WEufryVQb22ttKc5XrXIQdoYQj8%3D","expireDateTime":"2024-11-06T11:05:18.0874013Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '4902' + - '4896' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:41 GMT + - Wed, 06 Nov 2024 10:05:18 GMT mise-correlation-id: - - 3dd39d3c-df8f-4d0b-9e9b-cbe02644e7f3 + - 148e1928-dc35-4e9c-af5a-fc1e2bea51a3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054141Z-166cf497cd4z69dq84z53rfxzw00000004xg00000000hx0b + - 20241106T100517Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006wsz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A46Z&sr=b&sp=r&sig=3i0GewOBm0DAymOtDl5N9Et4SbXYg%2Bm9l1WRkzCI9e8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:46.9410873Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A46Z&sr=b&sp=r&sig=YKVl5MWShUoIZp%2BTgHTzj5%2BZ1O8haThZS7r27IAXrvw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:46.9408197Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A46Z&sr=b&sp=r&sig=Tezt4LZd2GxOqXOLQul0AGgEJmEqVzy3Phw8ztLFb%2BM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:46.9411728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A46Z&sr=b&sp=r&sig=nVVDUO39qMnsGEgozCLXIOtt%2F4AhtzFU%2FSpBVOCIcZY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:46.941264Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A46Z&sr=b&sp=r&sig=5tZU19XaZa8Iow%2F%2Bz5RvmVzg2qEvcyDZ%2FF%2ByeRb8AOw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:46.9413451Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A46Z&se=2024-10-16T06%3A41%3A46Z&sr=c&sp=rl&sig=LMP89zBTAno2jkLBU2HG4k6A8xUeZb0%2Bl84U2U9L8AY%3D","expireDateTime":"2024-10-16T06:41:46.9414281Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=VFm8R3vKW68rj5%2BiSji6j8CenGsClhd30RWa5npBkH0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4470716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=47uqZmvKY3Of6MD168m%2Fpll9n0GSx3eKfeRoJ%2B0i7lk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:23.446433Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=4%2F414V9Ylbpdarhozn9VEo9mQ9DYM44frvPrPNnJFLM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4473459Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=RzfhLhwNWh28Bo7htDUMNvrQ%2BPj%2Fobytncf%2BuqSCaLU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4476321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A23Z&sr=b&sp=r&sig=9earJxmSMXLI0tFn0RH3wJPwLrXvs%2F0BAkZF8misqsM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:23.4477234Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A23Z&se=2024-11-06T11%3A05%3A23Z&sr=c&sp=rl&sig=Nq4b2GBN4NOMMFOSL2D759mamkFSuu1C0Hix%2F%2FtaNS8%3D","expireDateTime":"2024-11-06T11:05:23.4478208Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4918' + - '4910' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:46 GMT + - Wed, 06 Nov 2024 10:05:23 GMT mise-correlation-id: - - 079fb1ad-7994-481a-ac93-e90630541a49 + - a049459c-641f-4f2a-8bb4-b69d2de464c5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054146Z-18489d46dccj85r8e2f8g29m280000000830000000003ftu + - 20241106T100523Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006xkx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A52Z&sr=b&sp=r&sig=sIR4IQljjXFaQyiwyRirVU5ikbdDRGO0EEQF6D38cVI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:52.2650689Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A52Z&sr=b&sp=r&sig=%2FVVA3C%2F0pJd6ZKtgczi6zpjeQ%2FDhUNgpw%2BmweGF8GJc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:52.2646425Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A52Z&sr=b&sp=r&sig=Wp9T1%2F%2FkDdzAF315ETG9tBbcFQjnHbL97OTfDyi80OU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:52.2652849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A52Z&sr=b&sp=r&sig=UlSDjoyH%2Bn4Ov4ISHQmwWDAgtXvw2IBSrWDqflhTSn8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:52.2654369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A52Z&sr=b&sp=r&sig=2TqZdgeQc%2FFdFiB5R7nXKzjrGpBd%2FrOgJsahRWnZH%2BQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:52.2655738Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A52Z&se=2024-10-16T06%3A41%3A52Z&sr=c&sp=rl&sig=Xg%2FB9jCC23q%2FWwcL3ALJzrVVlAFG5sNumFd%2BFJg4%2FB8%3D","expireDateTime":"2024-10-16T06:41:52.2657075Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=t%2BEIdkEO5aTzaQPNPbUW72XcW1Bnq49uUv9kWtyWFjk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7362525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=57gCbAbO66fdumLyTZ6Y0LDdk4KnJe5%2BcAw71YLNQgQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:28.7357238Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=uEguFkuay1Y8gHTl11T2LBd678vStEmtBtPKUs%2F5Wno%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7364546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=lhSg7pxhROFR19q0w4xPzjn8kFCdDEheUO8G%2BTMijg0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7366451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A28Z&sr=b&sp=r&sig=GbKenXpz%2BToWK%2B2mKSM%2B5ZsCLF%2F64LeCQd%2BnSqPG9uU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:28.7368426Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A28Z&se=2024-11-06T11%3A05%3A28Z&sr=c&sp=rl&sig=Sf%2B3KbhJ45MlEd%2B1ohKLbzFDn1T4mgtSp%2BVg53BwB7g%3D","expireDateTime":"2024-11-06T11:05:28.7370739Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '4925' + - '4915' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:52 GMT + - Wed, 06 Nov 2024 10:05:28 GMT mise-correlation-id: - - b3d099c1-b9a2-4e7b-a431-c05f9f21dbe3 + - 3d41eedc-3d39-4663-94b9-56d405411691 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054152Z-166cf497cd4qwz4p7wbrzn166c000000029000000000k7r0 + - 20241106T100528Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006y95 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A57Z&sr=b&sp=r&sig=t%2FMIFafBkH9%2BjddLNoOU2xeo0WNwv7ERa0asqbiSrQU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:57.6267916Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A57Z&sr=b&sp=r&sig=yNP6BUtNL1kXFuBkbTAIV3GX4QfuIOnEFp5ibVkYHeM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:57.6265331Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A57Z&sr=b&sp=r&sig=mQy8VKoFR%2Blr3k6FSX3%2FaAJM9J089NsBs79dAFH8%2B6I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:57.626867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A57Z&sr=b&sp=r&sig=DHvNOyAeCcs47B7AP3q%2FrMwegsNooayVJIWiF%2FvuKBI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:41:57.6269429Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A57Z&sr=b&sp=r&sig=8fRSNkJ0AKWppU9r6cPz1ftbcYRxOIdFt6gabUzVfBs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:41:57.6270212Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A41%3A57Z&se=2024-10-16T06%3A41%3A57Z&sr=c&sp=rl&sig=cfHAUwd%2B80nHo60PJyO0Jm6tdmxFK4g%2FJv73UpOSpgY%3D","expireDateTime":"2024-10-16T06:41:57.6271349Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=Fc1FiRLH2rtUnuEvakJDebC6bEe%2FpS2US98FAndrvSA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0554328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=iUCMqiPxn7du%2FHq0Uj54skPPiKiVc4ihI1HSeMAm7fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:34.0550079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=hKwXrwecefGcVTv8xqzKvkTVs1nb0H9%2FvR9wgLagEPU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0556227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=OdNHbr%2F6h%2BMcj4r2sJs467l9JvoLZaVpB0rF1TvmI28%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0558401Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A34Z&sr=b&sp=r&sig=L3TVdghdrlEaVlG7b%2FFAhdFv%2FoIIAVJ3FwlH8S2Z0LY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:34.0560136Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A34Z&se=2024-11-06T11%3A05%3A34Z&sr=c&sp=rl&sig=eSoEQpdlUa75fQlTbUtAvCs8RM9qYNdH6eI5qtfgxR4%3D","expireDateTime":"2024-11-06T11:05:34.056184Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4914' + - '4904' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:57 GMT + - Wed, 06 Nov 2024 10:05:34 GMT mise-correlation-id: - - 5e55e2dd-a15d-412b-9d24-95852063fbc2 + - 23b906fc-a4a8-48ab-8b8a-1dfd0ba42bc1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054157Z-166cf497cd4z69dq84z53rfxzw00000004zg00000000eagb + - 20241106T100533Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006z38 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A02Z&sr=b&sp=r&sig=%2FX0%2BquQdBznacRkCmlmKur6jDZcyeSq8Qa5te%2Ft5dyI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:02.9800581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A02Z&sr=b&sp=r&sig=D0lhnKK4Yixp04e7W473d4CQKCgHWBUBwAn9zDzvK7o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:02.9797771Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A02Z&sr=b&sp=r&sig=15Mkq0Xiagm3EaaByeuLeEGBikFkBAogieXGatliooY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:02.9801393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A02Z&sr=b&sp=r&sig=0Wn8AGXVazmgUPrEXmP0B7Op%2BMeNMVFc2zVP4VxJJeI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:02.9802108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A02Z&sr=b&sp=r&sig=W5wR2tOzJAk4Hf4qURT1aVHuSoVJ4OJsAOp9vmV39UE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:02.9802792Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A02Z&se=2024-10-16T06%3A42%3A02Z&sr=c&sp=rl&sig=zfeApDq3NSyac4yP4osIlc4Vw%2FphQcIteFyPJLaZPsI%3D","expireDateTime":"2024-10-16T06:42:02.9803394Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=t2oQnsxnTQm9ZAig5n%2B1cfkD9rWZR4T%2BUWRDcDJXtNI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3515556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=O5ihC826CghAXm3Nz%2BKic%2BBnhsy027vNw9j5JoOZXh0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:39.3511614Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=xfUJWWuBEStRNOZGP0y%2B9pXJ%2F9VzqwgAHmjjMcYW7HQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3517365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=V%2FXMVOFoy1nBQ%2BX1kV%2FXsylK4SnUS6fJi2zW2uYp6TA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3519153Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A39Z&sr=b&sp=r&sig=JJ%2FKncym9JZp4OocHRw3Jo5iOBWKAebzB%2FnvILg3X%2BU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:39.3520963Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A39Z&se=2024-11-06T11%3A05%3A39Z&sr=c&sp=rl&sig=mAFf%2BlvKe2mZ7VTJ5pmzanaN7eK%2BXzPFUzZOqgg74C8%3D","expireDateTime":"2024-11-06T11:05:39.352273Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2146,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4918' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:02 GMT + - Wed, 06 Nov 2024 10:05:39 GMT mise-correlation-id: - - ce3acca0-53f7-48d1-9004-1cb31f19b533 + - 952dbc6b-9ca4-4967-bdb6-6df574b363b4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054202Z-18489d46dccvln7t51fh7vb5kw0000000830000000003vc8 + - 20241106T100539Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000006zwf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A08Z&sr=b&sp=r&sig=dhjQc%2B2IyVE34Pq2g%2FeSTWeU7RxH6ilgCF0BjWvO4jI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:08.3096841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A08Z&sr=b&sp=r&sig=mX8ttyQe5GNk%2Bl8ijVHy0PUoMt58h6ZFYW0YkiZvLGU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:08.309365Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A08Z&sr=b&sp=r&sig=bK6zTP7GivjPtpK0UgqYTlAlyI6ZNi4OYYwv8ZOilIk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:08.3097765Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A08Z&sr=b&sp=r&sig=NB2mOxJ96bdhZAlWXiL6YM68tX0Lf0jo0tAa1Men8aE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:08.3098664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A08Z&sr=b&sp=r&sig=ZV7RP5xg%2F6KyQLXPRb35ladt3QXI2U9xXrreIullZn0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:08.3099526Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A08Z&se=2024-10-16T06%3A42%3A08Z&sr=c&sp=rl&sig=7GNp3puE5Zi6J9oSsYFsuk3IIP8fMtQlxJOsSur7tJo%3D","expireDateTime":"2024-10-16T06:42:08.3100416Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=yc%2FOgR3DLxDKNBcrRAkWpYeogg6qYNhcJgoM3gsNE5U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6440167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=ETkGzLSqFyQzdqHi8i4eAmgCL5asHm4aYSxCa3zqIEI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:44.6414333Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=YQgcOR6kUhozv9GRq8obZ0GXhiiqo%2BZrwHQwNOOHpZg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6441623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=KFBYLgwC4E4KK%2FK7L5V9rAInMo4fX7v1%2F0mMJeE6kAw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6443175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A44Z&sr=b&sp=r&sig=%2FuKLpq6vWuudPcCmZ%2F3SD7kTXs%2BApJHLtZ7AUKASBU8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:44.6444758Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A44Z&se=2024-11-06T11%3A05%3A44Z&sr=c&sp=rl&sig=zlXW0nO97gvMPAK0U%2FRyXe%2BtF9mFdIaio7SZyRx7%2Bf0%3D","expireDateTime":"2024-11-06T11:05:44.6446312Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4911' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:08 GMT + - Wed, 06 Nov 2024 10:05:44 GMT mise-correlation-id: - - 7d8222a9-a534-431a-9ba3-7cf9c10a0e8f + - 807fd193-ef0c-49f4-8dbc-1ffc809f698e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054208Z-18489d46dcc2nx5gu4q8t6hd2g00000007u0000000008ced + - 20241106T100544Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000070hc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A13Z&sr=b&sp=r&sig=SyFvWqlO3L6HodV9if2H7nQonE4jj6nsD1KI%2BhHjVY0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:13.6356345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A13Z&sr=b&sp=r&sig=NxCb%2BV0sPml5vDMYL7VsDUQVNcwv0cbtVXqcvfMEhQg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:13.6353987Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A13Z&sr=b&sp=r&sig=JlG2DGrAiVqowhuNpye1kyQyNYdH3K8fpJORBzc4NgU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:13.6356994Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A13Z&sr=b&sp=r&sig=y0Z5RVr0zwP1sml%2BzXygcBvJda2RCZocVAs%2FrmZUMP0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:13.6357613Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A13Z&sr=b&sp=r&sig=ydXmK1%2FEBlJ%2FJvKyv6HtWylpA%2B%2Bhw19qeHs%2BLeiLD1Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:13.6358243Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A13Z&se=2024-10-16T06%3A42%3A13Z&sr=c&sp=rl&sig=GODMGrA%2BSNNThQzX9VCGHzmPVjI0x2M%2F3ToyVf4nejo%3D","expireDateTime":"2024-10-16T06:42:13.6358842Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=7S9%2Bnf94Zw9JWcIA%2Bj7hHHCKEaXwOkbWV7AoWw8uIrE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.9540827Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=jFq%2FoaNka5Odyx8zUiYAFyQVoFSq7vMfuFMLO4sfgoY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:49.9526505Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=%2FzmM2unXnC53KDLVZqmWb%2FlohHrKpq5IDdc14nsHZnU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.954302Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=8XwIn4XQzeVTOdoS1EkL44mBsSpd5H8bnn0cjC0MlN0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.9545347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A49Z&sr=b&sp=r&sig=ie40BXSuM9vzHwg0ICe48dMgDdkuENfx9yhzaA0JX1U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:49.9547719Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A49Z&se=2024-11-06T11%3A05%3A49Z&sr=c&sp=rl&sig=rKwiQ1rdH1OTCGN%2FuMGP10re3VdVDacmyuHT4PkrF0s%3D","expireDateTime":"2024-11-06T11:05:49.9549974Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2230,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4919' + - '4902' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:13 GMT + - Wed, 06 Nov 2024 10:05:50 GMT mise-correlation-id: - - 61a5a101-0f8b-4f76-86f6-fd9aa0b2e03d + - 0b7bf512-5287-4d25-b255-0a487a32dc89 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054213Z-166cf497cd4qwz4p7wbrzn166c00000002dg000000004qhk + - 20241106T100549Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000071c4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A19Z&sr=b&sp=r&sig=EsJvXNuGBoXpHa2g%2FvAVf%2Bt7Ax3hY5om1gw4hyRkfVA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:19.067685Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A19Z&sr=b&sp=r&sig=0%2BMxY%2FH776i7TJc58qwCx2rT8nedr08cVXJBkecjbkQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:19.0672563Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A19Z&sr=b&sp=r&sig=nxLK1Rt%2BwUA2cQIBleqdoECQxvY%2FTQWSXuOZyBA48%2B0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:19.0678625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A19Z&sr=b&sp=r&sig=Zw2ectD5MUX1EeBIAxoXoJdqTPQouCsP%2FwLOktvV994%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:19.0680429Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A19Z&sr=b&sp=r&sig=nzxo03wXKcPFTaHT2QppIL%2BGeCq6be8LAXMLy8LdRho%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:19.0681755Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A19Z&se=2024-10-16T06%3A42%3A19Z&sr=c&sp=rl&sig=uToy0EOZ7Oh%2BGMxuvdNOrztxV7Nz5Agnu41K4OwEuaU%3D","expireDateTime":"2024-10-16T06:42:19.0683724Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=kV1nRMASFmGZcV0DPR20HFrV6D%2BpII6EYfW5nOV6PFY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.5972097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=xmCkqYZ2Rwnt%2FM98Q7sRKSPKumVD2EfOVHpE1t2O6ko%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:55.5969262Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=vh8JV6pI6ocxVElHTjqIyAPpIIIeuJccYU40gC3P35g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.597305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=HyQ0an15fsknu6kLQjluD7xhAOBW9WB7MsuOZE3cBac%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.5974019Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A55Z&sr=b&sp=r&sig=Gu1%2BCGE9ItxE9YqldqeMxJkjzdfzHVzsOVhP33hhAIQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:55.5974962Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A55Z&se=2024-11-06T11%3A05%3A55Z&sr=c&sp=rl&sig=aA%2FSQrzwxZ8cUwwf8Vr9KPUYncstZHYJ8rd1SczMcIs%3D","expireDateTime":"2024-11-06T11:05:55.5976229Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2272,17 +1979,17 @@ interactions: connection: - keep-alive content-length: - - '4916' + - '4898' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:19 GMT + - Wed, 06 Nov 2024 10:05:55 GMT mise-correlation-id: - - 74d1e16c-9ac7-42fc-af41-2449b21d5f4a + - fe1f27ba-2e67-4369-b983-6056019d7363 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054218Z-18489d46dccg5n69wa1d0046r400000007c000000000cmvk + - 20241106T100555Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg00000000727e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=%2BLhtRdh97uHKwoiLXumPEcWHRW61rtUG82s2wixF6hw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:25.0021768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=tWVJtqXyFRHl0cvWYr%2BPiouVp8NaFRn0WNvGV8YL7ok%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:25.0016143Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=NrVrPlnRU1KrzbO8rMxIACp%2BdGIIkFrWOwyc6i0VyY4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:25.0023734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=qOx%2BnE9lRE3CZGyABqAfiw0ItLzvt6DZuB4oE4D%2FhA8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:25.0025466Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A25Z&sr=b&sp=r&sig=VEkiRmgn%2FufcZvC3IyefYh%2FmoijBAjCLDdgFx%2FeQICY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:25.0026412Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A25Z&se=2024-10-16T06%3A42%3A25Z&sr=c&sp=rl&sig=9I9AEh0%2B%2BIWc1B7FBxUp0IHOys6CJEgs8x4tMB68Sw0%3D","expireDateTime":"2024-10-16T06:42:25.0027228Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=UvQd36k4Aaz885h%2FbiCDKRR67SOH4WkD%2FtmlkTU85jI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9005128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=ALE6KVGk1cYosVGSErSFmUy04hq0hM5FuXIRWg64mCw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:00.899993Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=fmvgjwtUm9PUJI51kecrBu6u%2BsflF%2BxzJu0GENvDoKY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9007198Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=IUNjir1tm1cK4NVE9cyueyOTZ9znoEi%2BmClIJLqLamQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9009419Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A00Z&sr=b&sp=r&sig=XZrYGVflJX7e45ZcT%2BSexiW7hUfTFABKxTne2Xc%2BTLg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:00.9011453Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A00Z&se=2024-11-06T11%3A06%3A00Z&sr=c&sp=rl&sig=nFnQGF0dkdc8z2Iz4yrzVKib7xM1uZzaK0jAm9PYUCM%3D","expireDateTime":"2024-11-06T11:06:00.9013651Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2314,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4917' + - '4904' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:25 GMT + - Wed, 06 Nov 2024 10:06:00 GMT mise-correlation-id: - - fc869fea-b26b-4473-b152-06c33b41b3cb + - 96092d03-9714-41b1-9857-6794eb63d9a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054224Z-18489d46dccggs4rh24eyxmvec00000007r000000000m6g2 + - 20241106T100600Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg00000000731w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2342,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A30Z&sr=b&sp=r&sig=bXslgs%2F%2FoyeLKJq8USOkSOduLhy5ZhmhsMOsqGZUsmg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:30.3899249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A30Z&sr=b&sp=r&sig=2qxE2VthAdvCkMG3I3YJc49NXmTjJuT8uDNvTp9E1kk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:30.3895142Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A30Z&sr=b&sp=r&sig=JnZ4kkL1La35FR4S29x0hrHYy5p04PQktWWpYRCPXu0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:30.3900949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A30Z&sr=b&sp=r&sig=MomM1%2FmYN3A6YzA%2FrdKWZQGwiH3DDFDmeotG1YX9MeA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:30.3903149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A30Z&sr=b&sp=r&sig=dC8msFhoNxu9gov5eN6to5yj93%2FQ6LIfz6dDl9piWKg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:30.3904781Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A30Z&se=2024-10-16T06%3A42%3A30Z&sr=c&sp=rl&sig=B6o6QHEJJmAdPM3A1Ke2VVLS%2BBgfICs6lV8Ryn809MA%3D","expireDateTime":"2024-10-16T06:42:30.3906399Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=knEmtfNrwS5Fop9fT30NOe1TqVjVyInXojCtu%2BFWA0M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2083046Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=bF90hvf8JCNYsuonls0gSJ3rmsBENI73bmKjQMaC%2BGM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:06.2078592Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=T2dWEvhknvYzopRB5d5l1DQJT2vCNQMFwb9Jnuzt9GA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2084852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=uF2tJgJLJa42RXmMI7FyEAyA7RugnU7gWTxzuzXkgvQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2086151Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A06Z&sr=b&sp=r&sig=rjGxEBjv9Z0cSVX7Q7CBa28hayWTy7YnBHiFzuOAnCI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:06.2087581Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A06Z&se=2024-11-06T11%3A06%3A06Z&sr=c&sp=rl&sig=9FqMlJz2vZsgORIJ8VG70dCDrtt%2FDQeEwGeGWbcp3%2FY%3D","expireDateTime":"2024-11-06T11:06:06.2089044Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2356,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:30 GMT + - Wed, 06 Nov 2024 10:06:06 GMT mise-correlation-id: - - afed6e79-ee08-4536-bb38-a8e12fad93f4 + - 5663c574-e8df-49d3-8d00-699b72e5b61a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054230Z-15484bdf4575xp6m65z1ff0ptn000000029g000000006yz8 + - 20241106T100606Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000073w5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A35Z&sr=b&sp=r&sig=QaJ6JEdOAU%2BDXgTgl05mMxrcmisyMCRub2u6WmAA%2FKo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:35.7812716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A35Z&sr=b&sp=r&sig=dBFXcycGGdxKUTspb4CdaN2p0HYa%2BWF0MuTcCKDandc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:35.7810297Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A35Z&sr=b&sp=r&sig=LYPv5dlCUtznpHiTMIRLEezat3Y20P68FcLGEDJkdJU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:35.7814151Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A35Z&sr=b&sp=r&sig=8n7PnkzKNkJwlK7Rx7ImFlBXUaGKpo%2FsR38q15hdsPo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:35.7815125Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A35Z&sr=b&sp=r&sig=sc7ShqXU4YzUEj20UeoRpAZ8Zt89XGaWxwSnhgjTInQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:35.7815692Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A35Z&se=2024-10-16T06%3A42%3A35Z&sr=c&sp=rl&sig=fY6Ga9g6t2Dxvwh0p%2Bxx2hcAgiV1Wq7tkVP63MjTNkg%3D","expireDateTime":"2024-10-16T06:42:35.7816171Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=paSWpUpcEaxVi8OgGxylIAb%2BcfQaluiBHnyUOxAPKSI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.5209578Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=6%2BvldFymlfYpGQ0TR%2FRFLAGLQvr1sKfTlse%2Fw627p3c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:11.5203352Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=RfTpH16q%2BjO4%2BdyhkqZuJB7Xmp5rwNgnBUL3Yv6btzM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.521164Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=kt0JLDAGovE6L0sCl6E740wCtTTgMspILIYQYPVHjuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.5213796Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A11Z&sr=b&sp=r&sig=AEXIEt5M84WbcVPrJagDh4k3ruXdTUTZxJ9gqLWd5EA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:11.5215823Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A11Z&se=2024-11-06T11%3A06%3A11Z&sr=c&sp=rl&sig=hN9mzpprX4%2Bm2A25ZYLNerwhv4z1PSdhCSjyZ%2BPEMZU%3D","expireDateTime":"2024-11-06T11:06:11.5217927Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2398,17 +2105,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:35 GMT + - Wed, 06 Nov 2024 10:06:11 GMT mise-correlation-id: - - ef7d2323-9f12-4a4f-bf17-381fa2ecb257 + - 38bb0404-4e93-483f-9e80-5868309a4323 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054235Z-166cf497cd4jqnrcydhdctbvm400000007ug000000003yb8 + - 20241106T100611Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000074qc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=6pmXAmugHVBs6HgM2BVuCYXp6v88xoLjJlTolRV9qw8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:41.0780738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=YoRpTtljAxWqmK88GN5pCrj7WQoBZM1YYcv7vWFme%2FY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:41.0775372Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=4vyYLmGEAWa2dKbQ%2BXLv%2Bl0lojCCvBscGuKpfcXgEnI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:41.0782896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=75yARqqskVAkipcuBf3di35S9ndIJ4eeG%2B%2B%2BLzgMEYY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:41.0784782Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=H9X4XlmMOB91KpyJR7YA0yQJdZh96ycx2bek3YqfZK0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:41.0786473Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A41Z&se=2024-10-16T06%3A42%3A41Z&sr=c&sp=rl&sig=ZbdhwhTKccSuwW9sx%2FIPwHd1PsUYgTbuzJdC7xVNH58%3D","expireDateTime":"2024-10-16T06:42:41.0788379Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=dLsSknSCz3sXyJW%2FY%2B1UafiMrW1OKuw01rLHrkC%2BeYs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8282978Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=K3NXG27PGfmezI5vpnuCCKtFul4FlNrOm354buu39Qo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:16.8279924Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=oUH%2FOPfd%2FZ6h6cAXq6q9zUY1v7RPg4icRIV%2FMDqU9lc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8284178Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=fCrI7wQOhPZaupJ8QJmLMJ1UFUSLF1F8AVl4D7RmxGQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8285391Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A16Z&sr=b&sp=r&sig=RuzzK%2BmhZApgIiVkILBz8cQV%2Fu4jzuukbWw7HUILUfk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:16.8286582Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A16Z&se=2024-11-06T11%3A06%3A16Z&sr=c&sp=rl&sig=oW7Go6yBx2nIoJbyhK%2FtQM8StKIxUCV33J9xjBxnYdg%3D","expireDateTime":"2024-11-06T11:06:16.8287743Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2147,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4909' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:41 GMT + - Wed, 06 Nov 2024 10:06:16 GMT mise-correlation-id: - - fc48cf56-fd02-4b0a-8208-8db2397c6b5f + - 67727089-fe92-4a5c-b237-9cceea3df487 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054240Z-166cf497cd4txcnh6qkkc4ez8n00000007x000000000gm3v + - 20241106T100616Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000075hd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A46Z&sr=b&sp=r&sig=w%2F4%2B7XSsErXG%2FP4vr6w6dElM1Yl1bN5STawMq7wlSXY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:46.4413496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A46Z&sr=b&sp=r&sig=8xoMTGwKYiL4aFwbo72N3RDpxk680vmiJi8TMxUxYnA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:46.4410786Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A46Z&sr=b&sp=r&sig=Gi1v9VBxX%2Fk07DH%2B9a6ddPRKsmP%2BTgL9S2DS0ontHqk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:46.4414434Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A46Z&sr=b&sp=r&sig=ccIpQZ0zr9AZu3IZrMnPsQmYR7mvp2w4ILpVQOykmN0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:46.4415359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A46Z&sr=b&sp=r&sig=t7jjk8IC0mqGLxUDHb%2FyZmNH6nQKhnIGMJJ6TV%2BV1bg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:46.4416576Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A46Z&se=2024-10-16T06%3A42%3A46Z&sr=c&sp=rl&sig=MibMoKVXyVyucVJ%2BpNRgRcGAOM7m%2BnZFXD65Xbfjo7U%3D","expireDateTime":"2024-10-16T06:42:46.441751Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=G4N%2FIvkbhdNjKYYk1PlY1BXbPGxhc0st4J0HidDqng4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1310558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=H6dNMn6SqA9PzY2bdWtp5hP52bBPvG7DTuLgXcQMpNQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:22.1307784Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=6zZjRsMMNoj7SEoSbXYYq4rV7BB4EDjgSQelfbuZDVA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1311506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=hC1y9zmAgjk5OC7MT%2Fn6RDAlG6JRwVPxDY4DOWxvrRE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1312473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A22Z&sr=b&sp=r&sig=vlS%2F0C5ggT4vFQhpsChrL5E819hLjocZlqoloe84QEM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:22.1313398Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A43Z&ske=2024-11-07T02%3A03%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A22Z&se=2024-11-06T11%3A06%3A22Z&sr=c&sp=rl&sig=xU%2Bo%2BnTGwf3GgUy1YVWiiRtdIUdF6LX0EZxCgvCd6Uw%3D","expireDateTime":"2024-11-06T11:06:22.1314304Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2189,17 @@ interactions: connection: - keep-alive content-length: - - '4916' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:46 GMT + - Wed, 06 Nov 2024 10:06:22 GMT mise-correlation-id: - - bbd01ebd-67bb-4f6b-ab5b-869478fb6673 + - 1546e602-f0fb-415b-b518-18fb6e2a6f6f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054246Z-17f5d8496672vwgf4k1huv853400000006vg00000000ad15 + - 20241106T100622Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000076ah x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A51Z&sr=b&sp=r&sig=iNjG3pYo6H7tYiN8aR87qRrU4oEWToCPiFYew7bVc%2FA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:51.7357859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A51Z&sr=b&sp=r&sig=LmCzishLNtZlQuqyZdFMmiNCbRlbVXStDUUalMtO%2B9U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:51.7355316Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A51Z&sr=b&sp=r&sig=p2MDEg0M0e3jpS%2FBeuHKLsDi4wG%2BC1KgqgBz1Eeqs20%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:51.7358602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A51Z&sr=b&sp=r&sig=g%2F0NDKrH8o5XGLx%2FAc%2Bw3yPKE%2BEHWLju4y6Hv%2FU%2FcjY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:51.7359306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A51Z&sr=b&sp=r&sig=DENPNq%2BC773IbNcke%2BU0EhyniosYOgnnopD2CqRMXOs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:51.7359992Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A51Z&se=2024-10-16T06%3A42%3A51Z&sr=c&sp=rl&sig=Xzp2lqdIgIorK70el%2FgHV2P9n5SIQYP77x%2FYn6C0f4Q%3D","expireDateTime":"2024-10-16T06:42:51.7360671Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=P01bYe8UX31M0faTtTBjV58M9%2FOzRCPA6qEs%2BulWjD0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.4370334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=7cuGgdSRmKtlRun9huXOFHaEN854wst%2FLCqMeUWvO54%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:27.4365476Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=yVS86PJ8rBNXD5AP%2Bf4QdR2koQtUlKfybRymwH7SYRw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.4372356Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=4UqbgdzCQ%2FGiamSy5l%2BO5xdGuwh5aqikuAa2nhJVZYo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.43745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A27Z&sr=b&sp=r&sig=YE49ZCljjGNIzjN8jQ74jLd6%2BRglUh%2B6J61zu9BShBU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:27.4376569Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A27Z&se=2024-11-06T11%3A06%3A27Z&sr=c&sp=rl&sig=m3Js4aOsRG%2Fpn%2F2KcNJ60J%2FeoyFUTYfperr0QAWughg%3D","expireDateTime":"2024-11-06T11:06:27.4380132Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4925' + - '4911' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:51 GMT + - Wed, 06 Nov 2024 10:06:27 GMT mise-correlation-id: - - 5fc63b02-f731-4830-a375-8e783d25cc44 + - ad71ceb9-0847-4676-a30d-13f208542109 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054251Z-165bfd566cfflhdmg194td87c000000006hg000000008rn0 + - 20241106T100627Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg00000000774g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A57Z&sr=b&sp=r&sig=6TQM7VxjGJDKYVZZsFJ6zqrDXpK%2FSmU4ms%2FIvlJyukA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:57.0546411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A57Z&sr=b&sp=r&sig=lq3ziKuJoRrunI6nc3a5uCEVgAuF%2BhKVLzhnrSlh0Ag%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:57.05418Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A57Z&sr=b&sp=r&sig=%2BwTiwluJyhga3fljDgNI6y8sd6LoJwRhP%2FEwEu9NYXo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:57.0548677Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A57Z&sr=b&sp=r&sig=L0JTwD7QtuxiftY%2Bia9SOjktNgRVULf1alYPTZ8vwFQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:57.0549882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A57Z&sr=b&sp=r&sig=0f7NxhjrSEP9xruBd5YYjSHf2tmd3SE5Uv9yzW5%2Bnk0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:57.0552307Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A42%3A57Z&se=2024-10-16T06%3A42%3A57Z&sr=c&sp=rl&sig=9lWnUVrSOjZ04gFPMALvC1nlMsG6RJcBk5XIY4Ep3cI%3D","expireDateTime":"2024-10-16T06:42:57.0553477Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=NVeunUp9vCeP3FrFZhG71HWLEVDpmALyqGRJf%2FfT2IY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7385607Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=abW2rVVs7LqLVqAbVH9foqHc6A2l4VNb%2F0TngZRKZb0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:32.7382073Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=l%2B36aJHXxmLO%2B75Of4rfPJZ4Ns%2FPJldMDj8UaJBykTI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7387688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=Tr4ZT11rrwN26MyeBgdEUV2I3WAWane2a8u1Xl%2FEYZE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7389662Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A32Z&sr=b&sp=r&sig=2uqYe3xAhxKSixBLGCHmXKdFYNiN3HxBu%2F4SVfyqaBw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:32.7391821Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A32Z&se=2024-11-06T11%3A06%3A32Z&sr=c&sp=rl&sig=6dO2GoB%2Fq8ihgTgkbaY70mveiXPwPSjA2rsb3hxjWyo%3D","expireDateTime":"2024-11-06T11:06:32.7393718Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:57 GMT + - Wed, 06 Nov 2024 10:06:32 GMT mise-correlation-id: - - 91a88b5d-c44e-4724-9a0c-0bdfb02a87bc + - 4d3407a6-bb48-4d4d-ae9c-37129a6c84b9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054256Z-165bfd566cf8d7vsev8ncb640000000005yg000000007sku + - 20241106T100632Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000077vq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A02Z&sr=b&sp=r&sig=4n4sEiFBcFncrXg1IwyFcEIFQMH%2BflrhJipODWEx9Bs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:02.3787434Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A02Z&sr=b&sp=r&sig=8J760H6aHvZPCVQ1Zy%2FPTm%2FnLXqMJI69TZtZfmFdK34%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:02.378342Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A02Z&sr=b&sp=r&sig=3DXETOWl5kdp%2BRwUGPO6BvnssnS7p71iZhmNFPzG2GA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:02.3788999Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A02Z&sr=b&sp=r&sig=Pijv2aK3h7zleXnXrJnrcf6JhA9SEshREliHLDvDeac%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:02.3790097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A02Z&sr=b&sp=r&sig=irxMDpJavnh%2B6bQmAJ1wtCCrJDR1AdgCiooE%2F4hnEMI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:02.3791Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T19%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A02Z&se=2024-10-16T06%3A43%3A02Z&sr=c&sp=rl&sig=kpCysiNWyCmv7dZN%2FlyXE%2BFLB%2B8A4GaqaMJ9vF53UAU%3D","expireDateTime":"2024-10-16T06:43:02.3791878Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=X4%2BAOC4dXp8FpM70imIHeVM0eDleLnuv2HeC1Tr62ek%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.0347473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=NuGbUfbst5uH3dCz6z9IWfaFUqUElKN6kL6I3mbpHjs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:38.0340501Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=v%2FcrJfXrNj2IsuCsKQS6e%2Bs%2F49UM572wgHiPF5B%2Bq3A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.0360776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=rrpD08TIcekp9Dg9G6c7QBGyxfwKv6PHoSHlxPQM5Do%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.036323Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A38Z&sr=b&sp=r&sig=FP%2BHZDzXNVcxX6ZBbp%2FJzXInHxt8iuQfUA5SzHTQIrU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:38.036568Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A24Z&ske=2024-11-07T19%3A04%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A38Z&se=2024-11-06T11%3A06%3A38Z&sr=c&sp=rl&sig=xSg3qOzglgPzyHBtcI9Zp4D%2FYSuXpeKljyD6OVT0EQk%3D","expireDateTime":"2024-11-06T11:06:38.0367957Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4905' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:02 GMT + - Wed, 06 Nov 2024 10:06:38 GMT mise-correlation-id: - - 62c16534-a084-46e9-b78d-669331a344be + - 75b7adb3-d3c1-4f0f-b360-1a09d44659ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054302Z-17f5d849667ldxhfw3zcavh8t800000008b000000000f679 + - 20241106T100637Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000078kn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=D9Vpb4auWVlBfoUL2uUcgtIh%2FAp%2Bv%2BZzmCt5yN4lFj8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:07.6434501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=L6YCSaoMqBSYT9JVx5tNohkklIKW2mVwokMNpVtx%2Bi0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:07.6429982Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=IOLQrZgT5xJABYDlt1D2MpV9ROtzZOg78Ul0rublSAE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:07.6435882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=5V0BI3kAwWKetDvkp7wJgBfWvHaiJ77aZSAXCCO8nYg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:07.643729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=OmMNg3RmmUDbKUs8TOrS7y3ADnmNXp3t%2BZcplj7gdfU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:07.6438667Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T21%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A07Z&se=2024-10-16T06%3A43%3A07Z&sr=c&sp=rl&sig=yBpVLVF%2BXujrSqABPl5E4HBtgOAhgMQ0Uu3EP39JHUE%3D","expireDateTime":"2024-10-16T06:43:07.6440055Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=MT1i8h9x1rjBulNQy%2FWjOqgvtTF3xWisXuU7U%2F7jHrk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3978801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=YfuLqfkQBqZaQGQ3DHdgf%2FLpTwh%2FA325OYi9pmXeiYc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:43.3975209Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=5p799qgFG1WyMpmpX4BWafHHSCB78IlJHLiXAXHbTbE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3979839Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=7a972iW1xh2HjPrbeFlcIGszMET%2BvrSkH586A%2BQILGE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3980849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A43Z&sr=b&sp=r&sig=eGkiAlzRZAK%2BcSRkMv%2Be40T0%2BsiDEJhSQgPMg%2BEe0ec%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:43.3981968Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A43Z&se=2024-11-06T11%3A06%3A43Z&sr=c&sp=rl&sig=Q%2B5x7rXUCOa7kxNJc8iLZ0FWNxL6QT7QYo602ydWxmY%3D","expireDateTime":"2024-11-06T11:06:43.3982985Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2650,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4908' + - '4913' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:07 GMT + - Wed, 06 Nov 2024 10:06:43 GMT mise-correlation-id: - - ad8a5458-73aa-453c-8e52-bdc371c3adbd + - ca0b68e9-ee82-4dbd-82e3-9e698402ba79 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054307Z-17f5d8496675cv7vvzee97tr8n00000009kg00000000k269 + - 20241106T100643Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg0000000079cr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2678,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A12Z&sr=b&sp=r&sig=jb5CKT7Omh9SyvXGBgaboim8bI38VMl4bmE%2BraR9Gl0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:12.8221706Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A12Z&sr=b&sp=r&sig=FtsnqBqTHjYf2HF5reWpC3C2tk3zGfx7r6SOxtsG8Kw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:12.8219105Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A12Z&sr=b&sp=r&sig=Ergij%2F3Hty7PteROaCHq2EDsNsnsCEWH80CseTyW9C4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:12.8222552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A12Z&sr=b&sp=r&sig=t4DXolYq44x21xsnJ3%2Fnpi18N3IJurjS%2Bz4UBb5Ji%2Bs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:12.8223393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A12Z&sr=b&sp=r&sig=hnMZ2Gd7AQkFBLPKLeetZ4IF%2BNwXjtdT1fCxrtqdB7k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:12.8224208Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A12Z&se=2024-10-16T06%3A43%3A12Z&sr=c&sp=rl&sig=vsJVyr8z1etL4BCPPcRQTpPIz6%2BtqfG%2F%2BKuZzrn%2Fbr8%3D","expireDateTime":"2024-10-16T06:43:12.8225028Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=HRi9Mm0Ben9YGQLyl6RbPn8oMoWGzDXwN7UE71PMp9g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7338641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=5bHQPuVRvX2mfA2QqYNIjkAt88kcL2MSJ2s1OSkx2is%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:48.7333314Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=A9MTItQZV7XGtHgeUGfE%2FJLReNdaduDoC%2FcJHgcFmoY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7341094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=%2F8ViQBE7gDR0GuQpDuEY%2FSJyM0U6DFCEuy8i5SW%2BpxM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7343165Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A48Z&sr=b&sp=r&sig=hjfy0zfXYR2cLjiEvhYnX7pmaFYdxM%2BU30J2YgvHvYo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:48.7345236Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A30Z&ske=2024-11-06T17%3A04%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A48Z&se=2024-11-06T11%3A06%3A48Z&sr=c&sp=rl&sig=yvgXGak0Je1HCG4RYl3ij8SM0fF0zj%2BeE7pmLCwvqoA%3D","expireDateTime":"2024-11-06T11:06:48.7347237Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2692,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4917' + - '4905' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:12 GMT + - Wed, 06 Nov 2024 10:06:48 GMT mise-correlation-id: - - 24cfaee9-9e1a-42d1-9c15-dc35b74ecfb9 + - 89d50a4f-7b33-46e2-95fb-06fff3772bda strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054312Z-165bfd566cfd2dxssq2e8pp1zc000000097g000000001mf8 + - 20241106T100648Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007a4c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2720,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A18Z&sr=b&sp=r&sig=O1XYVgnRE5fgZz3HPIulWPyJ7QL9eOoF%2FiFrBCS70oc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:18.1416613Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A18Z&sr=b&sp=r&sig=4V15nPqU%2Ful75VuGtaNu5%2BznKZ0azWBrsn7BQlL8Wpk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:18.1413873Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A18Z&sr=b&sp=r&sig=Cr5za7RBugeEteND47RfMKDi7U3Kr%2BXJjBBoDffg8OI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:18.1417466Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A18Z&sr=b&sp=r&sig=ECxplqzGhuLvvsc1L9Gv1Fs%2BQ3cKtl8fPj%2FqX4xyg9M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:18.1418382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A18Z&sr=b&sp=r&sig=hYJWE%2FlzTMOD31KaQTOWCfOl6M4%2B2rzE3HYK7LPcaZU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:18.1419191Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A28Z&ske=2024-10-16T12%3A39%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A18Z&se=2024-10-16T06%3A43%3A18Z&sr=c&sp=rl&sig=pzPMNAY1hZXHQVU9WrxrC3dN%2FZ7ORjN03juYRVFSBwE%3D","expireDateTime":"2024-10-16T06:43:18.1420032Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=X5s1FiG6JHBa%2BfwauXwutxG2%2FMci%2ByYS0C0BMfdwUk4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0695675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=xeRun3jRO6oxKMTbLBIQ30rA1%2Bglm0SmoYwQ%2BswZI3U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:54.0686933Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=QQoW3DdMPHBA5ckkch36N%2Bl3d6%2BBh5D%2B%2BahP9GJzO3s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0699403Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=Mvpk6jZeJgjT7tmJI%2Fe8Az5mrGpNz6WXjchGCREZPWM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0703441Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A54Z&sr=b&sp=r&sig=9KNy%2BFI9tTxOqfM4ywzgOAqb%2F7CCzhL3YewJ31XS9vM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:54.0707192Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A54Z&se=2024-11-06T11%3A06%3A54Z&sr=c&sp=rl&sig=vhwWDQX2UX0724A5lJ8RG7xoT4lHUI3OMOkdLyMd5VM%3D","expireDateTime":"2024-11-06T11:06:54.0711256Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2738,13 +2445,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:18 GMT + - Wed, 06 Nov 2024 10:06:54 GMT mise-correlation-id: - - 251c95de-2435-4741-a6e4-53ff18a489b6 + - 7e3ac292-9ffc-4c01-907c-a532d9529dd3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054317Z-17f5d8496679ts4r4pwahv9kug00000006eg00000000f8zg + - 20241106T100653Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007b2x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2762,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A23Z&sr=b&sp=r&sig=MoeibwqmECvwH6Xny3i%2FZK9bAIgaMOlPWy8joawueKg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:23.4396422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A23Z&sr=b&sp=r&sig=ooAbKTuD5RQQeZwV0MU3WoFDZbmJolIHwR3t7Cmm434%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:23.4391494Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A23Z&sr=b&sp=r&sig=ISc04y8Z2%2FWDNVDwrCJdVz9TR8tDMCIcgatNPTINXcE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:23.4397686Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A23Z&sr=b&sp=r&sig=y%2BqU%2FUySSPEzwoAxpgK5m0CCs8cM0H66C6oAp9FCWTM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:23.4400237Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A23Z&sr=b&sp=r&sig=SGXZOcmCUWoAmlBKzzahZYdDPMfbkTFgQYPRB2YWIqE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:23.4401508Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T12%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A23Z&se=2024-10-16T06%3A43%3A23Z&sr=c&sp=rl&sig=9usRm%2FG2kUmZ9ydbhpcrIrW%2Fwm5wXH0woSboC3%2B3b24%3D","expireDateTime":"2024-10-16T06:43:23.4403873Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:40:38.104Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:34.403Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=ReYMix3MPlqDiFq6x%2FQ9%2FT1%2FG5RGwcC%2B2isDZariVpI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5804002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=ciHJ8moBxGrI60pu9DfaCnD%2FFPLUWrDH2Z6%2FYQ6mheQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:59.5799946Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=QHMCbBIVSY0jjj7VMaIThwEBElkDws81yB3MZA2Klt8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5805675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=gmr%2FJ7i1UhBi4N3xmcsmhngRD7%2F93C0PGdofjKCAB%2Fo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5807368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A59Z&sr=b&sp=r&sig=RJ1mIJwtgfPh3%2F47GNQ%2BQphzMLFACPhhPcvT%2BgnK%2F7Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:59.5809012Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A16Z&ske=2024-11-06T17%3A03%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A59Z&se=2024-11-06T11%3A06%3A59Z&sr=c&sp=rl&sig=aTrEw5p3K7XWnueRAuBB08vcyXLAv3HaBWmYrmJHqfk%3D","expireDateTime":"2024-11-06T11:06:59.5810675Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:04:24.503Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:10.058Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2776,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4917' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:23 GMT + - Wed, 06 Nov 2024 10:06:59 GMT mise-correlation-id: - - 6384289c-0859-4c99-876a-a131bf3adea3 + - c1671bf2-77f8-44bd-b814-6f94308a15c9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054323Z-17f5d849667tvht4m3rc1u623400000008v0000000006mw4 + - 20241106T100659Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007c5n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2804,12 +2511,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A28Z&sr=b&sp=r&sig=RATk9Y3Mzb%2FLWhq%2BBwxrBOKgG%2F9%2BT6VlTmjSlrdLtEY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:28.7669147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A28Z&sr=b&sp=r&sig=qqgpsoxzTil74%2Bq%2BqRJ3BO8GYUZEK3iMJKB5kjmrBIk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:28.7666679Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A28Z&sr=b&sp=r&sig=fYi7%2BvmObG4F4pFre8BD1z%2FgxCxP5DvibnXrUUecfTg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:28.7670062Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A28Z&sr=b&sp=r&sig=IX2KasJnnGps4zJSvOAAok91wNn45AA7d%2F7aatP%2FqMA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:28.7671036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A28Z&sr=b&sp=r&sig=GklZmkzHZANINYDzBUU%2FOkAtEYUrJl4427O4oyiKNTE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:28.767198Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A37Z&ske=2024-10-17T14%3A40%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A28Z&se=2024-10-16T06%3A43%3A28Z&sr=c&sp=rl&sig=2HyjlNmJsWupCSPfDsNGKLeoYbuDudKiWPoZkX6RL7k%3D","expireDateTime":"2024-10-16T06:43:28.7672936Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"DONE","startDateTime":"2024-10-16T05:40:38.104Z","endDateTime":"2024-10-16T05:43:25.808Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:26.824Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=7hx%2Fppp3%2Bo72oMTMgKr32zD%2FLP39kTuz0fGRu1lecQY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0804262Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=2j92MCVyJZFE4R5lSRDe6jtT3nZNoojGeig0uywBEgA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:05.0798775Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=7181HQXUHksZTWjO110j8Mozj4y4hWt%2B8OV1TvfYX5Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0806404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=zlASy9sKf9f%2FFgm8vAonD55ZnX%2F%2F0G8wlPD0kBnH0T0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0808639Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A05Z&sr=b&sp=r&sig=keLhnj6HJ%2FN3oquPdAPii2Y2%2BpeyGg48Gs9jfurlSsA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:05.0810831Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A05Z&se=2024-11-06T11%3A07%3A05Z&sr=c&sp=rl&sig=1Je%2B0iU0e84gEG9LQMqScK1AzAqpkRUTYHSR2YICYmI%3D","expireDateTime":"2024-11-06T11:07:05.0813039Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2024-11-06T10:04:24.503Z","endDateTime":"2024-11-06T10:07:02.452Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:03.56Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2818,17 +2526,17 @@ interactions: connection: - keep-alive content-length: - - '4954' + - '5038' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:28 GMT + - Wed, 06 Nov 2024 10:07:05 GMT mise-correlation-id: - - 37427806-c050-4031-b116-8ce96f3f1663 + - ee2b79d4-8a65-4bf4-ba12-f153471a9818 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054328Z-17f5d849667w6jv7rkqk450w7c00000001rg00000000ca9e + - 20241106T100704Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006fg000000007czf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2846,23 +2554,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6429755Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6429755Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d9a7848-2bab-4c9d-93a6-85cd47e97f65.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":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:28 GMT + - Wed, 06 Nov 2024 10:07:09 GMT etag: - - '"c501b772-0000-0200-0000-670f516f0000"' + - '"fa00f418-0000-0200-0000-672b3ed10000"' expires: - '-1' pragma: @@ -2878,7 +2586,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 058BFD92E8614465951DEE9349ADCCEB Ref B: CO6AA3150220045 Ref C: 2024-10-16T05:43:29Z' + - 'Ref A: 0CA925AFFE1D471986442CE6DF5041AA Ref B: MAA201060516009 Ref C: 2024-11-06T10:07:08Z' status: code: 200 message: OK @@ -2892,12 +2600,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5f0c8391-e0ce-4a63-aa84-ed120118139e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"aa9e07a1-f982-404b-b53b-5405ff4917ca":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d721a689-294a-44c6-9aef-65e70af5c976":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/73aaeace-8860-47a7-93fa-285e628ff4a9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A29Z&sr=b&sp=r&sig=smnRN7WhNH7Py%2BhR8ge98AmZ8HgaT%2FMnh2qsa2ZNzJ4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:29.5858798Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/96b26dfe-7316-4e9b-b65d-765ad14c4d72?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A29Z&sr=b&sp=r&sig=HAYvcA6ha0xHmW1BO9UpAMJtqLdHyV73qKt264tNxSU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:29.5855927Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/50d64b30-97dc-4028-8841-a5b38e95aad5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A29Z&sr=b&sp=r&sig=UEHqpXiR%2BaPrSGaSiChLnUdHvRsxAxQBgT2bj1KFOvo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:29.5859814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/88d799c5-5124-4f0d-841b-1499d87ed58c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A29Z&sr=b&sp=r&sig=%2BlP9k8G3RH%2B1expGbTKagS%2BtLxrRBfPthL0qRnwEbuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:29.5860819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/0a94191e-13da-4079-911e-4ca9259ade57/4c26968b-6d8c-40d9-bca8-0f2829cf34da?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A29Z&sr=b&sp=r&sig=aivEkOcI%2Bk3sn7sEX7ds4yQ0iRXtGQh%2BUFfyg2qGIkQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:29.586181Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://jamqj7n2zhadr96e4zpxoiz6.z18.blob.storage.azure.net/de143c5b-5176-45bd-a2a9-8939d18d2111?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A43%3A29Z&se=2024-10-16T06%3A43%3A29Z&sr=c&sp=rl&sig=E1Kji4izVx3ouBT8Qy8Z9zt3n4YwtESZKaSEHApDd9o%3D","expireDateTime":"2024-10-16T06:43:29.5862726Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"DONE","startDateTime":"2024-10-16T05:40:38.104Z","endDateTime":"2024-10-16T05:43:25.808Z","executedDateTime":"2024-10-16T05:40:37.037Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:40:37.714Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:26.824Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"b1e57182-8d15-463e-9afd-8ea8e7f0204d":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"2cf7ce95-65c7-4166-afb5-579d6b276d7d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"2db80528-efec-4a02-855b-84e3c708851c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/17318a7e-179f-4f7a-86be-0f0d19a956e2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=QbNOZrCcLo4FGIgfAR8MDTvKFU1ynU8xtE2iJySeeeo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2793619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/5c560937-d997-464d-9d79-0fe8ee9c2036?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=ACVz0n%2BadCRKzeHwJZqDq%2FWMvfo0hM1qYpNpBbdGMAI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:13.2764807Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/10f3c68d-741c-4024-8c1a-755f9c8b867d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=kL7RGsc%2BbekW%2F8bs1FbAUM7r7JQPA%2Bv2wInYeR6E0Gg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2795312Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/c47eb6d1-808b-42f8-bd4d-a5954bdab63f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=0h2tmTpt5C2DFZMPgXHjFzlXasRzhbijLWqszrMMkz0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2796796Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/cd5ce62c-6cc1-4ae9-b144-c574dfb2c262?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=2RFi2uMPW5zCAbLqurvycvXKbrPUfRmZQ0GUMGwJpu8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2798154Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/99724e14-daa7-4799-abb4-a7fc1d010e6c_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=69UvJbXt71Tmic1H31%2Fq1b3sGtbPv0d44wi%2FldKpFh8%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2799512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/3784fba5-598d-49a3-b982-0511f2ecca3e/99724e14-daa7-4799-abb4-a7fc1d010e6c_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=Bp6dP0QZx8tg5LxvnasHYmPPdVf8a1NJi5%2Fsk60wIBU%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.2800905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://df42tut8dnfss5d3robw6h0h.z18.blob.storage.azure.net/99724e14-daa7-4799-abb4-a7fc1d010e6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A13Z&se=2024-11-06T11%3A07%3A13Z&sr=c&sp=rl&sig=fD%2FkQWZULEDDc95x%2BPZVA54rgXoZRGGXsaFDB5BByfs%3D","expireDateTime":"2024-11-06T11:07:13.2802248Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"delete-test-run-case","displayName":"delete-test-run-case","testId":"delete-test-case","status":"FAILED","startDateTime":"2024-11-06T10:04:24.503Z","endDateTime":"2024-11-06T10:07:02.452Z","executedDateTime":"2024-11-06T10:04:20.948Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:04:24.025Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:09.527Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2906,17 +2616,17 @@ interactions: connection: - keep-alive content-length: - - '4960' + - '6263' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:29 GMT + - Wed, 06 Nov 2024 10:07:13 GMT mise-correlation-id: - - 1fa2d6f8-f28f-4b60-90bf-f6b32bb64281 + - 9d9300b5-220f-48bc-9f78-9b68a065435a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054329Z-165bfd566cfvnfldckvfavskxn00000007cg000000007dsp + - 20241106T100712Z-16bf8d9b4c7z9ptphC1BOM62hc000000066000000001bc0p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2934,23 +2644,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6429755Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6429755Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d9a7848-2bab-4c9d-93a6-85cd47e97f65.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":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:29 GMT + - Wed, 06 Nov 2024 10:07:16 GMT etag: - - '"c501b772-0000-0200-0000-670f516f0000"' + - '"fa00f418-0000-0200-0000-672b3ed10000"' expires: - '-1' pragma: @@ -2966,7 +2676,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BBD741F90A134A64AFC06B518B69F020 Ref B: CO6AA3150219039 Ref C: 2024-10-16T05:43:29Z' + - 'Ref A: 0CC0D6A9F7294B9AA2B62813D09EDC3E Ref B: MAA201060515051 Ref C: 2024-11-06T10:07:15Z' status: code: 200 message: OK @@ -2982,9 +2692,9 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: DELETE - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs/delete-test-run-case?api-version=2024-05-01-preview response: body: string: '' @@ -2994,13 +2704,13 @@ interactions: connection: - keep-alive date: - - Wed, 16 Oct 2024 05:43:31 GMT + - Wed, 06 Nov 2024 10:07:19 GMT mise-correlation-id: - - b4ff710d-d1bb-48b6-acd1-6840166aef28 + - a0f999da-53c8-4fee-9ba0-f45616185aed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054330Z-17f5d8496677xw98qrdesns90400000008v0000000002d0z + - 20241106T100718Z-16bf8d9b4c79zqhnhC1BOMb6w400000006ag00000001utq9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3018,23 +2728,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:33.6429755Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:33.6429755Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"2d9a7848-2bab-4c9d-93a6-85cd47e97f65.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":"2024-11-06T10:02:34.8098164Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:02:34.8098164Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:31 GMT + - Wed, 06 Nov 2024 10:07:22 GMT etag: - - '"c501b772-0000-0200-0000-670f516f0000"' + - '"fa00f418-0000-0200-0000-672b3ed10000"' expires: - '-1' pragma: @@ -3050,7 +2760,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 58EEF35E20F74A7A8F745AB19D54762F Ref B: CO6AA3150219017 Ref C: 2024-10-16T05:43:31Z' + - 'Ref A: 9C0D1ED58E69410FA2C50C4A3ED2CF8D Ref B: MAA201060513047 Ref C: 2024-11-06T10:07:21Z' status: code: 200 message: OK @@ -3064,9 +2774,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://2d9a7848-2bab-4c9d-93a6-85cd47e97f65.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case + uri: https://99fd5214-3ec9-4a4b-b080-bbf1009a83a6.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=delete-test-case response: body: string: '{"value":[]}' @@ -3082,13 +2792,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:32 GMT + - Wed, 06 Nov 2024 10:07:24 GMT mise-correlation-id: - - 3e49447c-1c6b-44d3-9a90-ad6bd2d323cc + - a8f0b8f8-900d-482b-9275-85a4bcda048d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054332Z-165bfd566cfr8pkv004hp3fs3g00000005c00000000087cb + - 20241106T100723Z-16bf8d9b4c74rffhhC1BOM0zgn000000066000000000mk2q 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 f82c7e476b9..79e95e53f4c 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:39.6592928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:39.6592928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a364d689-1622-4106-a518-1a6bf763715b.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":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:11 GMT + - Wed, 06 Nov 2024 10:07:25 GMT etag: - - '"c5019282-0000-0200-0000-670f52a00000"' + - '"fa000829-0000-0200-0000-672b3fd20000"' expires: - '-1' pragma: @@ -39,9 +39,9 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 01DB12CFA6A14F4181DC88636A3E647B Ref B: CO6AA3150219045 Ref C: 2024-10-16T05:44:12Z' + - 'Ref A: 99ADA7F462484FDE908EFABE32D352C7 Ref B: MAA201060515049 Ref C: 2024-11-06T10:07:25Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:12 GMT + - Wed, 06 Nov 2024 10:07:28 GMT mise-correlation-id: - - 3d14327c-5d3e-4774-8f87-b8b3ad4d9fcd + - edc136a1-b755-464e-911f-ef8be6591664 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054412Z-15484bdf457kqcw7c4rchthr0n00000002k000000000ewb7 + - 20241106T100727Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016mz5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"fb170d13-f6b8-4791-82a5-292326300c27": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "da6c2664-a9f3-4169-83b7-7c8f0c3ab00a": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "9c36a43b-b84a-4e40-be0d-623310478b19": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"28ca6919-8407-489a-b6df-960a5ad86870": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "b2e6c697-6132-49d1-9549-94364a31c5de": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:13.392Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:13.392Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:28.483Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:28.483Z","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 connection: - keep-alive content-length: - - '1054' + - '1048' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:13 GMT + - Wed, 06 Nov 2024 10:07:28 GMT location: - - https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview + - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 6cc6f9f5-8717-470e-95db-3b7f548406cd + - a34901bf-6874-43d0-af0f-39a9096c9108 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054413Z-166cf497cd4txcnh6qkkc4ez8n00000007x000000000gqpt + - 20241106T100728Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n1k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:13 GMT + - Wed, 06 Nov 2024 10:07:28 GMT mise-correlation-id: - - fd430e59-c493-41e2-82a0-219aaee1017e + - b29703fd-e2a2-407f-9a87-389f460fa309 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054413Z-18489d46dcc7dl74pe8mubs3xc000000056g000000004zyn + - 20241106T100728Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n3d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A14Z&sr=b&sp=r&sig=GTODEqi9mdU0p4El0UH8RcJP%2FKmkxLE6Zdnyg68vSXs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:54:14.647729Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A29Z&sr=b&sp=r&sig=xYpJ5YFT1EubRLsweQ5RKt%2Bx2fFefz%2FfiFkxTdd0ZXk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:29.348365Z","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 connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:14 GMT + - Wed, 06 Nov 2024 10:07:29 GMT location: - - https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - f74bf4e0-7924-4e6d-a9be-9b6839cf2c40 + - 7215e4ae-dabc-4986-b0cd-fc0469003ca0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054413Z-18489d46dcck852hghpv4950b000000007u000000000k8a4 + - 20241106T100728Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n4h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A15Z&ske=2024-10-16T12%3A44%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A15Z&sr=b&sp=r&sig=5syu2LJTH1kfPpl94RMlZZT8%2FCR%2BF7%2BH%2BivqUvxJbkU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:54:15.9218305Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A29Z&sr=b&sp=r&sig=xYpJ5YFT1EubRLsweQ5RKt%2Bx2fFefz%2FfiFkxTdd0ZXk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:29.6973829Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '579' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:15 GMT + - Wed, 06 Nov 2024 10:07:29 GMT mise-correlation-id: - - e3953511-1815-4848-81a0-da78aae634ee + - f5d18995-9d0e-4f20-a33f-1e65f3f2c003 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054414Z-166cf497cd4xh8zq4d721105qg00000007sg00000000g8gq + - 20241106T100729Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n75 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A16Z&sr=b&sp=r&sig=cJ7mWEOyLVIFcxZRB482Dq9InHohqS6IV6XZNhK0A5A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:16.5220314Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A30Z&sr=b&sp=r&sig=%2F9Xc7IdKWBEWkmXCQxzR6hajfaBQdds49FmSYh5ND5U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:30.165487Z","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 connection: - keep-alive content-length: - - '568' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:16 GMT + - Wed, 06 Nov 2024 10:07:30 GMT location: - - https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 8ed40591-5484-42cc-8d3a-938972566015 + - 4e02d729-0cdb-4b84-b3bd-d22b688b0ee6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054416Z-166cf497cd4txcnh6qkkc4ez8n00000007vg00000000gbps + - 20241106T100729Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016n8y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A18Z&sr=b&sp=r&sig=kzoWBgQfjzVPdJU107pbZn874txlyRAPomaHaIB2lOg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:18.5677636Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A30Z&sr=b&sp=r&sig=%2F5xCMdPFiHJnX4elNCVftSR6n35o%2BLjob03JPcDSVHk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:30.4628006Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:18 GMT + - Wed, 06 Nov 2024 10:07:30 GMT mise-correlation-id: - - a3b3d443-2d57-467e-97c2-b4d49c53229a + - fa29c7d6-895c-4745-bea9-065cc7f92a3a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054416Z-18489d46dcc2nx5gu4q8t6hd2g00000007rg00000000fvvn + - 20241106T100730Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016nae x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A23Z&sr=b&sp=r&sig=%2B8a6MV8HUrT616oxCoFnwo6CPyRKMxaFD3mAfSBJ%2Bao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:23.8993345Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A35Z&sr=b&sp=r&sig=MP6QRwS4RFMYQuSFG0Y1bBs0VZC8v46rEo9R8jHEcLM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:35.8329955Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:23 GMT + - Wed, 06 Nov 2024 10:07:35 GMT mise-correlation-id: - - db9a5d2a-2df4-4939-ae2c-1f225b672da7 + - 81a76085-b559-4ae4-8621-3184d482be98 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054423Z-166cf497cd4jqnrcydhdctbvm400000007tg0000000062md + - 20241106T100735Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016nuu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A15Z&ske=2024-10-16T12%3A44%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A29Z&sr=b&sp=r&sig=bU41DlHhvhKwBZOPkuZPaxGjR3aM2TiV%2Fb08UXYgRe8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:29.2771458Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A41Z&sr=b&sp=r&sig=sGWqEaKJ6%2FjBfGIa1WM0zEzhyP3MYnDKzWWvCetmgBI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:41.1967676Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -445,13 +446,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:29 GMT + - Wed, 06 Nov 2024 10:07:41 GMT mise-correlation-id: - - 3bf2d1b0-4b85-4bf6-ac45-2b1827a3124a + - ff4ac758-a26e-4289-8c5f-efabcf6207b3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054429Z-18489d46dccg5n69wa1d0046r400000007g0000000003p3a + - 20241106T100741Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016phn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A15Z&ske=2024-10-16T12%3A44%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A34Z&sr=b&sp=r&sig=KdxhMpfD6odb%2B1TZuVoLcAxfbl5RkKSGXm%2FaQquP2W8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:34.4964083Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A47Z&sr=b&sp=r&sig=Cvy%2FKO8MHx7qNenML7P8EHXxr7dzAGPvibWWjN%2FQ47g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:47.2686725Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -487,13 +488,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:34 GMT + - Wed, 06 Nov 2024 10:07:47 GMT mise-correlation-id: - - e1c0ac5d-da79-463d-bff0-bd9e747b172d + - f6316462-c3d2-4c7d-a252-298ea59364f5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054434Z-166cf497cd4txcnh6qkkc4ez8n00000007x000000000gr4f + - 20241106T100746Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016q4w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A39Z&sr=b&sp=r&sig=L%2FN6XCz%2FbEhDf%2F%2B49zb3d5TqPwFGlQxjKspfYwEd1DE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:39.8814081Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A29Z&ske=2024-11-06T17%3A07%3A29Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A52Z&sr=b&sp=r&sig=Q9du1zcIC%2B4E30ytOyCQVezzVF%2FPJ6BW6nHfwN8x%2Foo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:52.5514505Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:39 GMT + - Wed, 06 Nov 2024 10:07:52 GMT mise-correlation-id: - - d58d81b0-5e98-4076-8337-86b2d0d8abb6 + - acb1b9b6-7037-48ff-9930-ac15e0e9f789 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054439Z-15484bdf45772jkjsy4g2ytrdw00000002wg00000000e7kn + - 20241106T100752Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016qsr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A45Z&sr=b&sp=r&sig=F89hFhED9KDzx2SDNHNtpzcowxF8FNF9Fqbg5y6j3oQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:45.1933495Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A57Z&sr=b&sp=r&sig=c2VpZgehQ7GK0UhJH50J6YieB4p9Fv4Gl2ALbGuvvGo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:57.836688Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -567,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '565' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:45 GMT + - Wed, 06 Nov 2024 10:07:57 GMT mise-correlation-id: - - f5509f6b-abae-4a9b-a076-a118dce65ba0 + - 14546932-b90a-433b-98cd-c2622dabb7c5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054444Z-165bfd566cfwdnp4qpcafa3cc400000005mg000000001xgw + - 20241106T100757Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016re8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A45Z&sr=b&sp=r&sig=UBF3gHDkABab3GT%2FT8lTDIy8RVq5mUHp8zh6TahQpPU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:45.6750817Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A58Z&sr=b&sp=r&sig=QyVjwu13cDdnx%2BlQ0vVQVSrcrziO0xUVpS%2BwrCcmV%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:58.9012794Z","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 connection: - keep-alive content-length: - - '558' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:45 GMT + - Wed, 06 Nov 2024 10:07:58 GMT location: - - https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - a4e0c1bf-7b43-4c7f-b8f6-9147e4608065 + - c12f43a2-c1f3-4402-a8e4-a74aacb6ed18 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054445Z-165bfd566cfch4x7fkdr4vg1mn000000083g00000000dz27 + - 20241106T100758Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016rfb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A46Z&sr=b&sp=r&sig=97EjyuxvR53Kcy6alIYFFpq8%2B45B91FZAWJGnXYd3uI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:46.1323529Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A59Z&sr=b&sp=r&sig=1qd%2FF85KrrG1MXsR2ihHch2WF%2FST3HbDlcuQu5HnFuk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:59.2415333Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -745,17 +746,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:46 GMT + - Wed, 06 Nov 2024 10:07:59 GMT mise-correlation-id: - - 759e4cdc-9ada-489d-91e9-a5caa0ac0e5f + - 8b096fb8-2aa9-46bf-90e2-a52e0d606ffa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054445Z-17f5d849667tvht4m3rc1u623400000008rg00000000ea6b + - 20241106T100759Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016rnr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A51Z&sr=b&sp=r&sig=2xc%2BfwxOuMJWMsQ8u5uZeUwnK2KMi2f8fCyBnPWsu04%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:51.5304311Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A04Z&sr=b&sp=r&sig=RXFRm%2Fy0Ke9%2B9eH9NderRRyVBmj5jfCti8TC6f6CiBE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:04.5183983Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -787,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:51 GMT + - Wed, 06 Nov 2024 10:08:04 GMT mise-correlation-id: - - 93d396c3-ef78-4bde-b536-4e4ae4fa328c + - 72476467-9e18-41be-84e6-c921665dc6b2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054451Z-165bfd566cfr4rxnv6rawx61b000000007sg000000009d3x + - 20241106T100804Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016s8u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A56Z&sr=b&sp=r&sig=ryqtnX8rrPI7aQM7mLYlsluFLYzXsfeDIdlPNlI0tH4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:56.8557415Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A09Z&sr=b&sp=r&sig=LCGwQY2ZOd6h5bNif7kCXz4A8EAeEVdtSWWkv1C1ELI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:09.808594Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -829,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:56 GMT + - Wed, 06 Nov 2024 10:08:09 GMT mise-correlation-id: - - 9177e1fd-f047-4676-a61e-3be2f7d6406d + - 33b72da1-d4b1-45d8-a915-5e6906a722fd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054456Z-165bfd566cfv7d42pfcg7e4ptc00000004tg000000006ywc + - 20241106T100809Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016sv5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A02Z&sr=b&sp=r&sig=RiLRGdJu%2Bk9bt9vwZ%2FpHS8QW%2FYzyGkrNqEpeuiYJ0x8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:02.2443233Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A15Z&sr=b&sp=r&sig=9Qwwr%2FxJInB%2BSw%2FxDqkuHblLAu5MKuW26KtO2%2F8YH84%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:15.1274593Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:02 GMT + - Wed, 06 Nov 2024 10:08:15 GMT mise-correlation-id: - - f65d019e-13ae-4a96-af23-af0f6da67a9c + - a59a49ca-820b-4292-9876-ab11d3315d84 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054501Z-166cf497cd4dfx7788bvx3ssu800000007r000000000cqab + - 20241106T100815Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016tnp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A07Z&sr=b&sp=r&sig=lmIXEGZuuNsWCLdJVjKEp7IMkNeO4VDoY9krgBhI5dc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:07.5511818Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A20Z&sr=b&sp=r&sig=X0cY0FAUKi4Tk%2BQsl128pxcSZo9VvUD4A6qkzaNAG7Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:20.4641083Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:07 GMT + - Wed, 06 Nov 2024 10:08:20 GMT mise-correlation-id: - - 3f28a998-20fd-4c60-a3f8-c4e75b179f87 + - 6c2a1487-aa99-470d-91d4-0b4123acb666 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054507Z-166cf497cd45mnb2hc29k63vhc00000007sg000000008u8a + - 20241106T100820Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016ub9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A12Z&sr=b&sp=r&sig=Q9B4HSo9QiJ3XIUF0%2Fw0DquqEF4kQnlK%2BoRUjvCyCEM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:12.9450411Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A25Z&sr=b&sp=r&sig=PWlE8qHWpwPbxX%2Bi7KfrKIt0RQdUaozWo%2BHdLi4CAco%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:25.7548273Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -959,97 +960,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:12 GMT - mise-correlation-id: - - 550ecb0a-d674-498d-a164-7cace21ce797 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054512Z-18489d46dccmwsl5v24n61fa8400000007z00000000038yb - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A18Z&sr=b&sp=r&sig=XaKXjp%2FbdvTvs4M6GM%2BMDTyLJfkpskqHkmbs3YBiiYs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:18.297315Z","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 - connection: - - keep-alive - content-length: - - '559' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:45:18 GMT - mise-correlation-id: - - aefdf916-4ad4-490f-8867-d4cb074a5d2d - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054518Z-166cf497cd4xh8zq4d721105qg00000007y0000000003086 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A23Z&sr=b&sp=r&sig=xYqMUCPJo%2Bk8Xn%2Fpf0Al6Dn4L%2BFlS%2BoksyLcNqsTik8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:23.6645425Z","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 - connection: - - keep-alive - content-length: - - '564' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:45:23 GMT + - Wed, 06 Nov 2024 10:08:25 GMT mise-correlation-id: - - 5478d02d-c74b-4f01-ad4c-014f211918e7 + - 6d132b9a-0a83-4e19-80a8-4f9a8de10492 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054523Z-15484bdf457bt9vdd1e9rbvmpg000000028000000000f6ps + - 20241106T100825Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016uyx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A28Z&sr=b&sp=r&sig=trVWvas27f11iHqont5qr%2B2odFruK2fxZvKwjvsP1Dc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:28.9778984Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A31Z&sr=b&sp=r&sig=jsudoomR%2Bse7GH1kjpp4NiAqyy34St0QKsAKS2hFFHA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:31.0826543Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1085,13 +1002,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:28 GMT + - Wed, 06 Nov 2024 10:08:31 GMT mise-correlation-id: - - 8b003857-1036-4bd5-aade-e8f35cc7279b + - 3dd1bb3a-75e8-4dab-ba8c-33133c8cabd1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054528Z-166cf497cd48w6x2zuxa69f51n00000007wg00000000frte + - 20241106T100830Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016vp8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,13 +1026,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests/download-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A29Z&sr=b&sp=r&sig=G18TP98xyV%2Fp6IdFjocbvaijb0fqfQFLGp74NLvchvY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:29.2872549Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A29Z&sr=b&sp=r&sig=qurKPiNpp7JsFZUl3QjIJWtumdsKSjdBwBh5NnPyXrc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:29.2875343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A29Z&sr=b&sp=r&sig=5RlNRs5CAwzAv5py1j4nwsLU3btJq82tVs9o6Q3z2Q8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:29.287636Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:13.392Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:25.817Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A31Z&sr=b&sp=r&sig=YTK3CLjHd85O7AWZTbPQ2%2FGemXSh%2F%2BGlVuK6cU8rgaU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:31.3622509Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A31Z&sr=b&sp=r&sig=7tNwY8RG4dEwjdwiXnkbRCj2enoma9J3%2Fx6N0kUHzbY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:31.3627255Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A31Z&sr=b&sp=r&sig=L6nvmC1r83qTtoz7v%2FaGm1H%2B8VKAqHF708BDiVeKZdc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:31.3629176Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:28.483Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:26.855Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1124,17 +1041,17 @@ interactions: connection: - keep-alive content-length: - - '2769' + - '2774' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:29 GMT + - Wed, 06 Nov 2024 10:08:31 GMT mise-correlation-id: - - d55c1fd1-0b8c-4022-b566-bbf1024d235c + - 3ade6995-c123-472c-8ec1-ff7904da34b5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054529Z-166cf497cd4qwz4p7wbrzn166c00000002ag00000000d8wm + - 20241106T100831Z-1556595cbbc6gtcvhC1BOMqnss0000000630000000016vqr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1152,23 +1069,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:39.6592928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:39.6592928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a364d689-1622-4106-a518-1a6bf763715b.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":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:29 GMT + - Wed, 06 Nov 2024 10:08:33 GMT etag: - - '"c5019282-0000-0200-0000-670f52a00000"' + - '"fa000829-0000-0200-0000-672b3fd20000"' expires: - '-1' pragma: @@ -1184,7 +1101,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E7C5E31664C64D77961870BA1678D820 Ref B: CO6AA3150217019 Ref C: 2024-10-16T05:45:29Z' + - 'Ref A: 98F1E6077D6D4B9691BBE20645F93509 Ref B: MAA201060514049 Ref C: 2024-11-06T10:08:33Z' status: code: 200 message: OK @@ -1198,13 +1115,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A30Z&sr=b&sp=r&sig=FXLhc6DCjhrs12lAjtf1JsyafmQj8dO1PltMPa%2Fgcmw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:30.2366151Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A30Z&sr=b&sp=r&sig=zzuz1AixKFcvK%2BurpsAq372daRwia%2FRpkUeQTL919RM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:30.2369989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A30Z&sr=b&sp=r&sig=h7UZGvpVtrCaUTuEVS69buafZHbxtI44ga1ovHu816o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:30.2370978Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:13.392Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:25.817Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A35Z&sr=b&sp=r&sig=%2B6iqO43g6DaEblfhuoe9sgv3ceUPqXigC0zM26mnjXs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:35.805871Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A35Z&sr=b&sp=r&sig=oyAmNjFFBrH1GXvKtvbjk4q2K1pbsiLQNddwN2tHcmw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:35.8063556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A35Z&sr=b&sp=r&sig=JpbxjRc5DhoZe%2F8enyUBR%2FiytsEZLdoVBilDVkdZMZE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:35.8065062Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"download-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:28.483Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:26.855Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1213,17 +1130,17 @@ interactions: connection: - keep-alive content-length: - - '2786' + - '2779' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:30 GMT + - Wed, 06 Nov 2024 10:08:35 GMT mise-correlation-id: - - 60865f33-866d-4d7f-9208-6d03bbc66070 + - e80a9eee-37f5-463d-bdbe-cbf74f0f7252 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054529Z-166cf497cd4v8snbtm724w4g2c0000000820000000005yg2 + - 20241106T100835Z-16998b5679fdbr29hC1MAAgkh8000000047000000000af3g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1241,23 +1158,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:39.6592928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:39.6592928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a364d689-1622-4106-a518-1a6bf763715b.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":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:29 GMT + - Wed, 06 Nov 2024 10:08:38 GMT etag: - - '"c5019282-0000-0200-0000-670f52a00000"' + - '"fa000829-0000-0200-0000-672b3fd20000"' expires: - '-1' pragma: @@ -1273,7 +1190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5AB330BB72424D57839BEBF68546AAED Ref B: CO6AA3150219011 Ref C: 2024-10-16T05:45:30Z' + - 'Ref A: 4C2711562FF744FBABB682F5739039BD Ref B: MAA201060516037 Ref C: 2024-11-06T10:08:37Z' status: code: 200 message: OK @@ -1287,9 +1204,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1302,15 +1219,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:45:31 GMT + - Wed, 06 Nov 2024 10:08:40 GMT mise-correlation-id: - - 556a8e88-5613-40c3-8e2a-ccbf4f4c2f0b + - 31b9508b-25d5-445a-8815-0e8a58f637aa strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054530Z-166cf497cd4ljj2qr0tamq52u000000007xg0000000023t3 + - 20241106T100839Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000aym8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1334,31 +1251,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=NydLZ%2B2MUJ32xJ0PgnoYeHfnzKcozTir2bh%2FInbc21E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.705139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=PvfTtKbbfwylQVk5V%2BWzXUdApPqO%2FW3xFxrympKijdc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:33.7046994Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=RGQDks3nyLwLM9yKG0Q2r8pXcyaZk0%2BsCHJkYJj2qek%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.705363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=7Nb6WrtroiOQUCawpHwaByTn%2BwhbEYqKYEXU%2BkWAVAQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.7055536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=%2FdOdRZN6LBiozONZarEbdPoZT12TuQAA3OkKqfpVJH0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.7057608Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A46Z&ske=2024-10-16T12%3A44%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A33Z&se=2024-10-16T06%3A45%3A33Z&sr=c&sp=rl&sig=R%2FxHsPEhQ81fCY07TnFM3gsg9tuOaaneN%2BW5VSkmR6U%3D","expireDateTime":"2024-10-16T06:45:33.7059399Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:33.633Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=X5YKSOjWpUtIsWhV528LXajxnodkJoazcOLbghZ%2BUNA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.2301027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=RQsLaTDpCcCH7lS0H4RlhtFAYI32PaXV6mhaSsPoBu8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:45.2298914Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=1vWr3Uy%2FX9Mo8kZ4JAvLda%2B8gxLSot22Oax6362ERdw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.230194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=8291Ln%2B6lnm9qVWth8pdW0X75f3nSlQh5TZ6OTr3FjI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.2302833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=kVUxt4tDXUXMyG5XeoFI2KHNqs%2B7A28Z0Q3msfEFBdA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.2303595Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A46Z&ske=2024-11-06T17%3A07%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A45Z&se=2024-11-06T11%3A08%3A45Z&sr=c&sp=rl&sig=RwLvproTc6k9ymmgQpCcO4ewIcDGd4Rp6POPA8s5cRw%3D","expireDateTime":"2024-11-06T11:08:45.2304346Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:44.978Z","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 connection: - keep-alive content-length: - - '4881' + - '4866' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:33 GMT + - Wed, 06 Nov 2024 10:08:45 GMT location: - - https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2022-11-01 + - https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 2e443aa1-ec4c-4e9b-a098-30b4b40c9fb7 + - c7535ce8-98ed-49a5-ae9d-c60e561d9a1d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054531Z-15484bdf457rtsfnfha0z70xv800000002fg0000000094ge + - 20241106T100840Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000aypc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1376,12 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=BvzAvTIZs81nlNC6arhcFofQ%2BpttKIr20LfI2jUnv%2BA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2663597Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=SY9rfYHXpv%2FkQdVGg3Un02CVUIOOB0w5P9WkbcjlpfM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:34.2660882Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=1TVaHwT7t75wzGiujvo5Dpn8Xk3604x6uKM8UYj9LHg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2664337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=ZK50WRmrdiZL8RhPngz9enxuTypHYGp1JuVLtZXK1B4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2665041Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=l3oiAwGbxzmXwxohK9SCE%2FNmUOWl%2FXk3Fp6q0JG2%2BSA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2665861Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A34Z&se=2024-10-16T06%3A45%3A34Z&sr=c&sp=rl&sig=he5jHAGBW3jnc5gsbjIeT%2BlQWDgNjS0iGMkBXVhe4q0%3D","expireDateTime":"2024-10-16T06:45:34.2666841Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=CplAztMsRlLyotYUIUuX4gbvjmnUB9Iqu2yuPsQwsrs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8294264Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=ybvG9zak1PCspaIkQjGjfsz53VziArsYYl%2FwmfNptaY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:45.8271248Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=5CIEk9bv7XY0pn7cY5ZUCscf0K1%2FePNByyTjyNCSlAs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8296385Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=8IbVQUwErpzOIFn%2FOM3Yp18KUq6ckAQCz%2BoFKBjRHr0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8298942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A45Z&sr=b&sp=r&sig=DM8ON6b%2BmdPRMIhmP9R6hdtSwIBnHY6T725WbIpQrgo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:45.8301177Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A45Z&se=2024-11-06T11%3A08%3A45Z&sr=c&sp=rl&sig=pHud7m5WxeArgsmw0kEcLb5keJ2QewKEQiVNlXy62qg%3D","expireDateTime":"2024-11-06T11:08:45.8303236Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"NOTSTARTED","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.615Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1390,17 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '4924' + - '4912' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:34 GMT + - Wed, 06 Nov 2024 10:08:45 GMT mise-correlation-id: - - ed846c5e-c6f0-4038-88af-7026c6ccc50d + - 6d09fcd8-8dc1-4e44-ac88-66acf1fec752 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054534Z-15484bdf457rtsfnfha0z70xv800000002c000000000k17d + - 20241106T100845Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000ayz0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=3Aav3DcUUge1mWE1cT2goDV8OcRKN5u0YGzXeMKSDF0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.6414349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=Y58mEzJOZxhViV0MNb4OH%2Bo216sQ2xDTCbNJV%2FMXVtQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:39.6411685Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=F%2FL8UJyTwCWXZErsKTp4wYLq5AgrZRhbRDpY43YnNLA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.6415343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=OV6bRlRe8XGEE250coSl9AJCnFSdczDcpInB3d%2FzdmE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.6416294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=iMaA5dg8MRG43SWhHaBjOqZrDOpt%2BjfplOjDt%2FAzRjw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.6417279Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A39Z&se=2024-10-16T06%3A45%3A39Z&sr=c&sp=rl&sig=T3VxRxnzcJ2vhL09XSIj120NL2hzN84gWws%2BLdYhe%2F4%3D","expireDateTime":"2024-10-16T06:45:39.6418209Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=tDnPCMsZ15jUB41GI%2FAwGVotIp6jskmlMn42Wb6ZYU4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2690807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=ZzBZpL2SuxCEkQL1VJrX6Blg0I%2B15oZB%2FS2JW4iH42A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:51.2688116Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=SoN7CmrhRC4uGiTzr%2FfbTbXwoOZhDXkf8FC92ELBP%2FQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2691707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=kLuIQ38UAa6KciG2eDJNCPE1hr%2BwkhrGYdLxDf8Rkbs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2692666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A51Z&sr=b&sp=r&sig=4KjR8JyeI2%2BLImWMDGmkxYSSv%2BsU4lToJy%2BQRv96%2Fhw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:51.2693634Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A51Z&se=2024-11-06T11%3A08%3A51Z&sr=c&sp=rl&sig=N3aXbEEL6KFr3b%2BS80CeZMfJjISSBKI2ltBlmyqPJtU%3D","expireDateTime":"2024-11-06T11:08:51.2694506Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1436,13 +1353,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:39 GMT + - Wed, 06 Nov 2024 10:08:51 GMT mise-correlation-id: - - 3cb2153e-bfe1-4036-8f5b-bc14291ade5c + - c4ee027c-88c6-4bac-a347-8c586d14b7ef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054539Z-15484bdf45772jkjsy4g2ytrdw00000002ug00000000kp72 + - 20241106T100851Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000az9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=o7OwP%2Bidx2lRA2g90f6X9546OL2i0sCxDBr%2B0jqthRw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.9384378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=ZveA69vjwK5RranVNS8X%2Bb499Rq5Z9old0PjMi5i%2BcY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:44.9381585Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=WRGf1SrLN4QC9OrECAMdQVxVMVZwS5En%2BG0Nu8gcuTQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.9385728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=hUDYQye78TBZZIegTqgtwXlwfSpR6IUhYUYBQSRP0fg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.938664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=7I6oxkhisTwPQqQyVaWyEHSSvc4l8wk5vw7v%2Fzr7a88%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.938751Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A44Z&se=2024-10-16T06%3A45%3A44Z&sr=c&sp=rl&sig=9xE%2FzsaTtq7%2BEbEtRlmZ3DIgvXsX%2BbdA4O59N%2B3O0FI%3D","expireDateTime":"2024-10-16T06:45:44.9388344Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=napZTUbJl5i9rS%2BBYBs4ocFrDrGAfIj89M31OWqYI44%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6687472Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=%2FsrVoMKjh%2FP1jhPXKKQ6E8C8qy%2FmARzpRJOdcOepMYE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:56.6680792Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=yY8BxqPoiCrTABd5FtUOPLKLdeK1ytt%2BBC8F5JBxHnU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6689378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=9R2ZjqB891JiYyav%2FGMDgVEOL72EYluGN1ViPN5BqCA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6691349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A56Z&sr=b&sp=r&sig=j6XGIf7Sh%2FHmTvgvGeqwuowezRQi6qkvG5wDXvkU2Co%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:56.6693039Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A56Z&se=2024-11-06T11%3A08%3A56Z&sr=c&sp=rl&sig=xXaghSbu3UbtFVIaUS1XplfOm956p7fy1e3tGn2oZEY%3D","expireDateTime":"2024-11-06T11:08:56.6694836Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4928' + - '4918' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:44 GMT + - Wed, 06 Nov 2024 10:08:56 GMT mise-correlation-id: - - b5ff427f-1f4c-4773-abd9-51f81ba07b75 + - 44f36fd6-cb80-4d67-a43d-172aeed3dfde strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054544Z-166cf497cd4jdw4g4y9hv6ku6n00000007u000000000a0tk + - 20241106T100856Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000azpe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=Co9Z9%2B%2FUDtLdl0PR7L0T%2Bu7NM%2ByFhTWIyCv2%2BkZAXMc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.2412909Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=iToTALZPC4tmlvEqzeBVU%2BQfTJFZfSOfvVALc37W%2BGI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:50.2408985Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=iwE%2BV2CWm2AnygjMyxyB%2BpQzGoVAkc5vLyDUgnGj%2BSM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.2414699Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=s2sf0xE6SSdIeoovV%2FpDfXusmkGKDLB29iQvv7l1290%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.24168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=Hi6YgOjrq60zWB3uglmiIequ%2BDeJ02veKCLpXhKB9cI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.2418545Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A50Z&se=2024-10-16T06%3A45%3A50Z&sr=c&sp=rl&sig=7aIdG%2FRIliwv1ycE%2F3I9h%2FTncJdPHdK5%2FihAUbYd9v8%3D","expireDateTime":"2024-10-16T06:45:50.2420232Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=E3WJ4xE4P4DoK8ocjzshaGntMqIWxV%2FwEvZW1mii%2FYg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0021863Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=vNt7HdYU6GunFYUdwplivaIFy66vixw7co3NZEES%2BiI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:02.001817Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=gKbrO8FJ98wwaB2Lxcom0AyvGDQpFae1bfiJZC%2FKzyE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0022831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=wMkSQ7KrFwYQePc%2BViqRoC3VamIt0qyIv2Ql6eKhIFs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0023729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=%2BWZX3tGzLDgp2HfYG8gw7HVD6HED%2Biryxg9tKohRkao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.0024659Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A02Z&se=2024-11-06T11%3A09%3A02Z&sr=c&sp=rl&sig=l5SCcs55TOPHQuWSEZuKnHdcXvVk8JulenJW43dqqNA%3D","expireDateTime":"2024-11-06T11:09:02.0025489Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1433,17 @@ interactions: connection: - keep-alive content-length: - - '4940' + - '4917' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:50 GMT + - Wed, 06 Nov 2024 10:09:02 GMT mise-correlation-id: - - dc9404b9-cd2e-4797-91ce-d2caf524309f + - 8c461009-130c-42ef-b99b-aaf1f66feef6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054550Z-18489d46dcc5trkwxb4ya4w12000000007qg00000000gapr + - 20241106T100901Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b01y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=yHachWcorVT%2FFLNBuexPuZgFAAPS9oNEuJ0ZFniwWaw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.6643334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=ixgmO3ZssZt%2FEY8n%2BNrFodmvMn0Eob5aLV645s0EXMo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:55.6641023Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=JnamIA04%2FCZsoNrLH27Bnl7FvqfBmpMFOcZaLYnqFZM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.6643981Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=zSgLR5lwDjxnVhOSGp8%2Ft8gkTHKOIvd0PdouqTfXMEA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.6644625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=6L8q1Yp4xv0jHBh%2FWK%2BUuba6fB9SxTldxdMAnyMboHM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.6645251Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A55Z&se=2024-10-16T06%3A45%3A55Z&sr=c&sp=rl&sig=K2X9LEtnDMpNMt%2F3m9E3ULRCWdItJX1eca3EP8wHGj4%3D","expireDateTime":"2024-10-16T06:45:55.6645863Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=ncUFI%2FeAHRpemkYLGbkMpS%2FcmdozYPr6hJwcoR96izg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.3588941Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=1Ck07zY7zs2N90tV4M1kVbmAasLoQZ4HFCbUuRdX2Xg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:07.3583467Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=yYaOXBQj43o%2Boj2o6mR6XosFrZEzbhtT%2B0%2F6KTRNtr4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.3590768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=vCGzri2iVbSErgdlukEhh%2FIvPEwXcLp9ayaDhFSsrsY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.3592709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A07Z&sr=b&sp=r&sig=WcU7VK4P8ufAib58fRlytDENdodY64s87dlv7skTlIE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:07.359458Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A07Z&se=2024-11-06T11%3A09%3A07Z&sr=c&sp=rl&sig=oCLupeeNePGa9qT18ftM3hkQ7P%2FtRKP%2BEE2OxyLoLe8%3D","expireDateTime":"2024-11-06T11:09:07.3596466Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1558,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4926' + - '4919' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:55 GMT + - Wed, 06 Nov 2024 10:09:07 GMT mise-correlation-id: - - 702677e7-c9c5-42cb-b7b0-fd391132a5c0 + - 47367581-4c95-4cae-9d8b-5a640646bbc2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054555Z-166cf497cd4jdw4g4y9hv6ku6n00000007x0000000003tdr + - 20241106T100907Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b0fa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1586,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=l33gt9JAJlJWvV0HoH67DfF48I3q2mfdv1zYLl3o1So%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.0090685Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=tht4gKwxIVu584JWQjGNjxFStEFpCYBVkJwaZE4XP8E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:01.0086543Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=0uiIMo%2FP0CsPdA%2FsSlNna5%2BrtsetwsCqdi%2FV1%2Fct%2F6c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.0091671Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=yX3XE8Hyd%2BxWhp0nsFMbCSpOJuAcNH29WT4tPemddUA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.0092579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=1BkCpFMCVi%2F9eg%2FxiRXchpeWD5gLOSkbYr0MNF8Ej24%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.0093461Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A01Z&se=2024-10-16T06%3A46%3A01Z&sr=c&sp=rl&sig=x%2FlOaMYOiwiXkmGlI98yxlyhlqppk60%2ByMpzn6T%2FHbI%3D","expireDateTime":"2024-10-16T06:46:01.0094324Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=xakzQPtt7KSWkMiqdC%2FeiwVntgs%2BrzFgOADmc5hL1ak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.6879895Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=Fyg9ITV0nwaXT22CmwimSUwemSBx6CGLN1BA5kZH2oE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:12.687591Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=qq0adPOvmY0XvjqT5zaRbdzL85qplvzEXB%2BXWM55KRs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.6881531Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=OihG1dPtxWirpngqltJV9ipue3WOdCWsBY0HLmRkmOs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.688326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A12Z&sr=b&sp=r&sig=f1xAkcdUYskVJRTBrRCDi2cDCF1L1sKhUNhceQ%2BZNho%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:12.6885172Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A12Z&se=2024-11-06T11%3A09%3A12Z&sr=c&sp=rl&sig=SHmRRGnLSAcVN%2FSIlXjSc6xDRmX%2BP79BEznNtZ308u4%3D","expireDateTime":"2024-11-06T11:09:12.6886762Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1600,17 +1517,17 @@ interactions: connection: - keep-alive content-length: - - '4934' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:01 GMT + - Wed, 06 Nov 2024 10:09:12 GMT mise-correlation-id: - - 7aaf854b-c512-4bd1-b067-95176aaa93f1 + - 2cabf4ea-679d-43a6-a514-0006fae5e951 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054600Z-18489d46dcc6jcdlqqc3agq27c00000007w000000000gybk + - 20241106T100912Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b0wv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=9FhR9M4jX5LTdUMN6UK7U1tg0tb3wzMwwRRruFXeMUc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.4092923Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=JWjG7pVAW%2F42MG14Oe2oYwnrsWL03f4lVdPTN4FO%2Bvc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:06.4087905Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=UNWhSf1kPy4eYEF%2BCJOYSFrLAoreQXWR6RvlMZzzeoU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.4093752Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=zl6bDi8yecRZqzm8PfGFRYd2ExvqqWUve5r4Dj56lcA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.4094567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=yOMpEUhVwFOuMgiE4mxF8n3Lkn2Ns1svVqbg%2FvIBKm8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.4095384Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A06Z&se=2024-10-16T06%3A46%3A06Z&sr=c&sp=rl&sig=gKighhK5cKl59Wheb%2Bn3E4AgOT1wUCQop1jNpy%2B3%2BUM%3D","expireDateTime":"2024-10-16T06:46:06.4096885Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=An%2BKmdBmz%2B7fmSbuGepgOvU5ydwpbd1vkLMzVwNc7KI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.00459Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=YlznrdenDit7azqeXHjEZthXaX6snhOS9b4SGQ82KQ0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:18.0040277Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=1Kc0KAII2TytaTdh2cMB9IICzgzKR7T%2FB%2BqzJvFNj0Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.0047557Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=STBRVXDkw32gHtE%2BQeCdoaOJ1rga1JlJosZNRIlRKys%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.0049248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=xoBIZQPYKzoXynBrfnYcfx6CN4TRwpe7nHtc66svELQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.0050946Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A18Z&se=2024-11-06T11%3A09%3A18Z&sr=c&sp=rl&sig=fpSqxCd47DjLLlV8koDTra1TOvpjs%2Bqt2H4Gvytr6Jc%3D","expireDateTime":"2024-11-06T11:09:18.0052562Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4924' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:06 GMT + - Wed, 06 Nov 2024 10:09:18 GMT mise-correlation-id: - - b4b8490a-f6fc-40b3-98af-96beca24495a + - 82f26733-b300-43b0-9d3e-e1d4878469f1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054606Z-18489d46dcc7dl74pe8mubs3xc000000053g00000000c4zp + - 20241106T100917Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b1ba x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=Po2f8ZELMyCoGPHgpVBcYsq9a%2Bm2Mmb08thUMAYSS58%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.7449539Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=A7fn%2FJlVrbAmH9gktWdgtukGf7JDWL%2FFWK2QV7MsSaQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:11.7445602Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=n0vg%2BTUuA9zyIzNctAUFfh4Yj6n6%2BtrLmsfGOEIBwms%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.7450936Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=0SqxX5QpNKjy7IDGLxQ6UUdko%2FVqu2nmLiGE4uXV8fs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.7452347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=aEoZUJ1SLvn1W84g7P7%2Bi5uPdEXBZmvtMv8WUljKRFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.7453696Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A11Z&se=2024-10-16T06%3A46%3A11Z&sr=c&sp=rl&sig=%2Btfcm2VAfGO1BlkKyzoQWR85ShJn9jrKERczh8bxvIw%3D","expireDateTime":"2024-10-16T06:46:11.7455076Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=EcttdNPewiLFe27UnykKxIqz1lf%2BiQ6RK9cqE1T8iww%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.3775695Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=nk5tccYa2hJlrxwWW3KmLrda9MLgIUCLi%2BdCQ45cZuA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:23.3773493Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=xK%2FCUXEVE4wdFKKJzAns71ha562k9nbHanC%2BcKkbuEQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.3776396Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=n51G05FrHw01oL3dRxdRd1fJY6WPi4oEdqeovbacQGc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.377725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A23Z&sr=b&sp=r&sig=HznRcwvbuh33CR7MC4tppjvBWCezs7EP50IeecmaCwI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:23.3778016Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A23Z&se=2024-11-06T11%3A09%3A23Z&sr=c&sp=rl&sig=rKOZK8spBqR9WLiMDzu3BnBFDnQ1sjAJUzRAKN8tcq8%3D","expireDateTime":"2024-11-06T11:09:23.3779345Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1601,17 @@ interactions: connection: - keep-alive content-length: - - '4926' + - '4911' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:11 GMT + - Wed, 06 Nov 2024 10:09:23 GMT mise-correlation-id: - - f0f7b28d-11f5-418a-9028-20bf429efc47 + - f3c991af-5360-4e1c-a659-dffd7d3b894b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054611Z-18489d46dccfp7rz6a82yt7pbw00000007u000000000kne4 + - 20241106T100923Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b1tv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A17Z&sr=b&sp=r&sig=07xjaR5PxwfbaApt0%2FqhaFyUBYry1DuM4iRITFPf1pc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:17.1094148Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A17Z&sr=b&sp=r&sig=w%2BgpCc4IvJe5qKNc0UUgdW6TfpVUF0KJWglf9qPUL%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:17.1090568Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A17Z&sr=b&sp=r&sig=BiL60%2FMp7FyoN4Z4r%2BI3LBKo0uNfweVXD42EAZzYiwg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:17.1095491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A17Z&sr=b&sp=r&sig=NGiRSJP0V9vDfXtINOwmD9Pyf2rb17n98j4v7r6Z4Mk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:17.1096868Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A17Z&sr=b&sp=r&sig=oHctYBeG08Fb0bL%2BHUAz%2B%2BbDo05FuFBnp9BMJT2bqkg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:17.1098183Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A17Z&se=2024-10-16T06%3A46%3A17Z&sr=c&sp=rl&sig=Ben%2BJQk90mx0UnEHGRr2jymEg0Dbp%2FeYLD%2FE2T8YL48%3D","expireDateTime":"2024-10-16T06:46:17.1099571Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=9XW6Z0Mlqukt19BgkR8iILXCy98KmS3ctbTr0VJBvJU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.712776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=i63LVMSBptsAdYUkc%2F%2FMlVIl9p0D1oh4KSRsC27sGe8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:28.7123563Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=7snwjs7DQEMvK%2BKJHggyCSG4kJwxWvu%2F%2F9Gk996mpDU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.7129212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=7QbnVDatxmzllrPytEOHV7cSNrJ9HKAwBZnXBHsmw%2BI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.7130603Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A28Z&sr=b&sp=r&sig=TBIyewTQfAwtZWpgaUauGZkkonYMnD%2FDruPkU1iITjw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:28.7132053Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A28Z&se=2024-11-06T11%3A09%3A28Z&sr=c&sp=rl&sig=VrDrPE%2Fz6HTyUmAGZyxrrxLS6zN%2Fk2%2FIgNkclOqZ9oQ%3D","expireDateTime":"2024-11-06T11:09:28.7133446Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1643,17 @@ interactions: connection: - keep-alive content-length: - - '4932' + - '4923' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:17 GMT + - Wed, 06 Nov 2024 10:09:28 GMT mise-correlation-id: - - 0295ba8c-d812-47c7-8e10-0f730268eda6 + - 677e23db-af03-4696-95aa-cd269507d937 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054616Z-18489d46dcc2nx5gu4q8t6hd2g00000007v0000000006kdc + - 20241106T100928Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b27m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=KsO2rMgQifr2Dyb%2F%2BHWF1CDlQezWmVFzbgN0Al5sUXc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.468223Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=moVsqLVW4bcoSiPB3nseFV%2FAcRdSaqrHGgqZey5GzqA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:22.4676866Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=1hnHG8y1kqe%2BOk%2F64e3DGg%2FdIb9gH5l1O1nwOPPkqWw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.4684124Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=6DX%2FV%2FhUeZg8L%2FCAlytLOP8O41zE1Y%2BwrmoMvS4yQFc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.4685902Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=Es0NFP1WqNOkXUNmpq5bYOcspA8WvMd1sYbkDCzFZL8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.4687547Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A22Z&se=2024-10-16T06%3A46%3A22Z&sr=c&sp=rl&sig=UbOJZ9YzUqB3zZgwSjG8Xqwtop1pe%2FHoEWHwwCxUkqw%3D","expireDateTime":"2024-10-16T06:46:22.4689208Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:34.212Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=mF1M%2FeLBuYOMk1CtKSlAjXivF3mPRPj0IODyid6p39w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0475812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=0LEQn3FW7iv7mcYgiIySlpy16Lnxrl0abaTv2%2B5IIpM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:34.0472426Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=xH5c%2Fgj1rc37nugHdD8egORt9WHUiDR2TSEAi2smfC4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0477268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=2KS1PD62nLKp7zn1O8xsb%2FfY16qGVvtFsE3vCA0RJLg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0478682Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=fOgj7FmVAbhUg%2BB1qmFRwgLs3946vMHDg9%2FDbevoqwg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.0479894Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A34Z&se=2024-11-06T11%3A09%3A34Z&sr=c&sp=rl&sig=o8OcGBFbcYpfWMb7aiJiaKFdFuIgpKycReZNOe4zHPQ%3D","expireDateTime":"2024-11-06T11:09:34.048144Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:45.894Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '4931' + - '4915' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:22 GMT + - Wed, 06 Nov 2024 10:09:34 GMT mise-correlation-id: - - 647c67ab-cfb6-4806-9f5f-2222a959c369 + - 2a8586d3-9f42-451c-813f-e65b462c8fa4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054622Z-17f5d849667xc28w1ckc6mbf4w000000078g00000000dxym + - 20241106T100933Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b2mq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=3ybUcof%2FZGNsNEc3WuJKYiWTvijqfX15CgGdX4HYj%2F0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.7840692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=DKtFaBG8wlgGoL951MS0EGn7%2FpnFmTnJKMdFdxL9oZw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:27.7837258Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=tXQtHBEiiDKDFSEY7PW%2F93BEOpztplk44y5%2BmAHexb4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.7841931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=jKHq3wbEIOHpji%2BhrnMmgiWbY7E%2FvA159pLYIS3irT0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.7843396Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=4z7x0OMDtX3JFeW8PeALuwhiypjgZ2BXw1cvA%2BcGYJ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.7844805Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A27Z&se=2024-10-16T06%3A46%3A27Z&sr=c&sp=rl&sig=BTsLSKD%2Bpl0f6mb3c0YPbkShJ971PUa3ZhQvpIfefc0%3D","expireDateTime":"2024-10-16T06:46:27.7846215Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:26.946Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=aFDozArbyo7Vr9n0aYpLzJO5lHfNPxPF5Z6bcUawCQM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.3896981Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=gRVVL2z6QzRTFJW4TViS%2FtpDKgmGiPIGOrnSAxR7phI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:39.3893393Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=P59x5w90ytP4RwNvKCxLIc%2F3HYJsgBnmzAx9ISsOAIA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.3898359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=9S6yObbR%2FQQHwsba39mhw4PoEsTn2AzERtILpDaGzzc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.3899729Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A39Z&sr=b&sp=r&sig=y5f4QAO74%2FU6rvwCM1xXef6PZKLhsGU9OP04FGVNs8s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:39.390155Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A39Z&se=2024-11-06T11%3A09%3A39Z&sr=c&sp=rl&sig=Cp1Owr2puSYj2%2F%2BJX4rU4%2B4rQ2APxjYNq1UEVstddcE%3D","expireDateTime":"2024-11-06T11:09:39.3902799Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:36.647Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4927' + - '4916' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:27 GMT + - Wed, 06 Nov 2024 10:09:39 GMT mise-correlation-id: - - 2c37c1f8-044b-4265-bb55-32c5f00acc97 + - b22c7cf4-35f2-4baf-a50f-0d47e0e634b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054627Z-18489d46dccvln7t51fh7vb5kw00000007xg00000000kfkf + - 20241106T100939Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b2yw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=CWNepHetcGBdBrgizZ%2FVf1C%2BkM6XQgRE028Aylcleu4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.1644755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=Z%2BhbghwFsWR93M2wjVjlZaZyeXIOS3NfIsW%2FhluAkxc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:33.16421Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=xEx19yYfMAID5pZ6Ge4j4xECPhPpBySwpr7AVLdEJKw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.1645574Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=ynD5JoUW3Y4JFyVgKWslVfkECjaQIf69ZJyO3l66kew%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.1646228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=Yx7bqYJHQh3qNoFY7GcOnx8Xo%2BclMwbKsxoXME69lf4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.1646841Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A33Z&se=2024-10-16T06%3A46%3A33Z&sr=c&sp=rl&sig=CkfNF7TgOY2fDUfloLKbHLBf5q3BSXDbFVwYG%2FlpWaY%3D","expireDateTime":"2024-10-16T06:46:33.164745Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"CONFIGURED","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.092Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=V6kNhpomA%2Bg2pxwf3Vm16q%2FPoNNSd9%2BNKDWskBBHzrI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.7171651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=3Y2zbTE1zJLpd8x4%2FLD3ulogcpiQ9YAzZ7VA3uSMzQw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:44.7166987Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=5HTVQ3YdTVJr3BUKpBw9U1gzcgxh7HqwD1NiC0%2BhB3A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.7172641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=a4zVQHQIB5l1q0IUY%2FbRRfBYzUvlXvvda%2Ft6q5I5S7o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.7173597Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A44Z&sr=b&sp=r&sig=HWk%2Bp8OdnyHvfElVK5lMWi1ebsVpZDLPiSTMf3c0HXk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:44.717455Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A44Z&se=2024-11-06T11%3A09%3A44Z&sr=c&sp=rl&sig=iIrumags6yWTBy6hpwmDBEtCsINfPxkMWpEutLzRKPE%3D","expireDateTime":"2024-11-06T11:09:44.7175488Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1852,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '4917' + - '4916' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:33 GMT + - Wed, 06 Nov 2024 10:09:44 GMT mise-correlation-id: - - aea800c3-5d57-4014-a66c-545c4735ad0a + - f4fdaccb-cdc4-49d8-99ba-fd74b4616a9e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054632Z-18489d46dcc5trkwxb4ya4w12000000007u00000000092et + - 20241106T100944Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b39v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=2cKfW%2BYHkUTBMiVrcoPR24QUZbexA%2FRB6VEWbR09fBQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.5401958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=vpwt%2Br%2Bs3%2BjvErB6BWWaRnpeLtJvSWp18%2Bv5MlCPHkc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:38.539872Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=imqiEUWZwZsgc3aDwUU8eumbymjEb1xrd88Sm84ScCc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.5402619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=rq%2BjSfuIIYvQCf9kp1SsNmMqewxH%2F4JSEvzyTmWliZI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.5403306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=UxQsUtZ%2BKL5IOq3VxyGxXSjuD210NMnse8787rwO98k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.5404063Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A38Z&se=2024-10-16T06%3A46%3A38Z&sr=c&sp=rl&sig=V1FKvFnzkIY5ckiM3cGl%2F7qkwshkOVLRMDkm23zBE%2Fk%3D","expireDateTime":"2024-10-16T06:46:38.540497Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=nrn2WjwttEFHvwJuCGFQk%2F0wu%2Fnl%2BnCm4xgycH27mB4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.0683828Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=3gYCexyurQEeZ26MtKQKS43FCMdSjYVwwCTVXcK1wDc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:50.0671789Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=XsqcqLARvkdTajQ9ieDKkC13VM7eE5BgAbe09EgHPNE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.06868Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=gKmp2s%2BFt7ki1KGHmbI7z%2FpXhqu1ETVxLnAo7E%2BzGPc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.0689727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=jFTTDkO5gNtgXVyrBKP0Uo8L0TgKPvBA66D6n0IXD%2BE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.0692567Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A50Z&se=2024-11-06T11%3A09%3A50Z&sr=c&sp=rl&sig=IPfGd1%2FcjWCLRHBOzXhTFMuT4ikyu%2BHbdEtUfckK%2F2Y%3D","expireDateTime":"2024-11-06T11:09:50.069564Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1894,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4927' + - '4918' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:38 GMT + - Wed, 06 Nov 2024 10:09:50 GMT mise-correlation-id: - - 04ccc28b-ee93-4733-b6f9-301d9eca2fe7 + - 9503bf54-2baf-49af-bc4e-a7be44d2c1a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054638Z-18489d46dccp2df8e3m20gzz8w00000007y0000000001vs0 + - 20241106T100949Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b3pa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1922,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=XzcTMv2Y52AGzB2BaCxb24IAbX8mUhYuUzhfQ5biaQM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.8839569Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=Hf%2FJB%2F8Rbcs8UOBotriDodqDjg17Gjz6GKOx9RPCn2k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:43.8836856Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=4vQefW6bh5Smq4FH%2FvI2ZwhswGSRYEd6FCIGX9llyX8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.8840427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=Htevdfp9U1OGE03vvTVWbaIO9tFcSWRDjJ47iUZZUlM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.8841372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=%2Fl01gILOgkaQUiK4%2FD4Qyrrj9w8UP0MUh1%2BxLAgtPcU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.884219Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A43Z&se=2024-10-16T06%3A46%3A43Z&sr=c&sp=rl&sig=iF2Iw88wktk5OkPfu5COtGQj%2BNA%2FB4K8IYwb4vOOVEY%3D","expireDateTime":"2024-10-16T06:46:43.8843093Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=%2F%2BFAZiaLigEKtLXpTGKDx7tNzl6UdMIgPmU%2Fd9cKbHc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3913707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=6oKtQGhci2l6hgVGxk6IzKHa%2FxLK0E6QnsKiCNC0Y2s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:55.3909449Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=1UJEJv6CHntUseu7cOADVN%2BWDQVxb%2FgsVoX8%2Ft5l8ho%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3916715Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=cJydfyuHU8Z9rS8ItatRYEDXF%2Bbm4DVVGhhw6sUdeiQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3917501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A55Z&sr=b&sp=r&sig=dZX6SrWYKDcs8VKPnwaksndkLsd3dBoeqPZwiESTVEs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:55.3918242Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A55Z&se=2024-11-06T11%3A09%3A55Z&sr=c&sp=rl&sig=lE2aWGyO8GYMm9Tuy36p%2FcFFISSPoAerNmGg2E%2BNV1U%3D","expireDateTime":"2024-11-06T11:09:55.3918968Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1936,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4922' + - '4921' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:43 GMT + - Wed, 06 Nov 2024 10:09:55 GMT mise-correlation-id: - - e1673e5e-536e-4cc3-97c3-d735a47c07a2 + - 7efec623-aaaa-4030-9e08-56380b8719c3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054643Z-17f5d8496672vwgf4k1huv853400000006zg000000002bd1 + - 20241106T100955Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b40u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=np60civC0FEezPGabXsH1WtmDN%2Flyfq9yGBBBViMBxs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.2874421Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=ZGv%2BaiYLgwoDPzsjZpPu4Jmm%2FGfzaAVciVk1pqBvh0s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:49.2869796Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=yNVCZyIRk2YYSH6WlyF3flYyL8MXBFq3o3ZmmPazt2E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.2875363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=C7evdHv5N3UWPsaZ%2BAtAdz6j1tONJnc2fMgi8u06xy0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.2876433Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=eMrGG%2FOqSy3rIij80Ziirz%2Fhh%2BlaC41Um1cx9Z6VAME%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.2877402Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A49Z&se=2024-10-16T06%3A46%3A49Z&sr=c&sp=rl&sig=EBOdDp1%2BpfsJsFRhMIkgP8rmQE8SGm87YdUl0XD8p38%3D","expireDateTime":"2024-10-16T06:46:49.287834Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=czzpV81qOuLGBS7ypI3%2B82hlTZp7zIWqkVhKHUqRyQA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.748062Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=3LXqF36Jr8UTcgMVIx%2FVIZbedXmlVh%2BgT7m0IiCbPWQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:00.7477742Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=67PUcX83q%2By05jHc68jzw%2B1t0O8WgksmQPJC8ng5UA0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.7481426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=ssC6zqh0yqcY4gzeeq1UZHeb%2FTr78ejIsuOq6%2BpYs7U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.7482372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A00Z&sr=b&sp=r&sig=1fYMxVhYi5%2FJbsEqoeyEpyazMVPoCHnE0SFgc9f88Nc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:00.7483338Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A00Z&se=2024-11-06T11%3A10%3A00Z&sr=c&sp=rl&sig=PPMYYaGFIc3oocTDNjwq6q7G3LSDNhsTYkClZdBs2Os%3D","expireDateTime":"2024-11-06T11:10:00.748427Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4922' + - '4915' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:49 GMT + - Wed, 06 Nov 2024 10:10:00 GMT mise-correlation-id: - - ea198b65-df26-4920-beba-e6dcee2e18f0 + - 2df03263-12b4-4364-ad25-696c43a3b520 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054649Z-18489d46dccnnh2b19wcyx7sm00000000800000000006swb + - 20241106T101000Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b4bt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=%2FSAxsVinzx4x4mRRXurnEgwDK%2BpynnmbovOdyVcEVfQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.6456036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=Lvgg%2Fw4JaoGm6di1YsXzVTNcQXqiSLkV5qjefRjH3p8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:54.645184Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=U0XDY1BSif26HyhsZVghkvYU81nPF9wieNjP%2FL%2FK0o8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.6457714Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=OBxBrH2dERAGZCM9EOzoRZ180i0cgQXrPB88toCHyHg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.6459489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=Ub6l0aCpqObA4VEGrWg%2FvUTN2GZNdvR%2FRvsL3k%2BGoa4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.6461173Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A54Z&se=2024-10-16T06%3A46%3A54Z&sr=c&sp=rl&sig=x5xHFFoIsw2JbviHICL9FTD3vm7T47leRKZsDqARil8%3D","expireDateTime":"2024-10-16T06:46:54.6462774Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=LVpvVyDKBxGxJ8XUZNDeE3cn67Idcc09wE2O3PU9E%2B8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2076104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=%2FSmbBh8VXNWtdgcUKCGtAqI3uVWChDrcfP3g%2BOiaqsE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:07.2070987Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=JVWiwywvzZ4x79oTJrnu2tEYYNmWR8v6j3sg4HeMWnk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2077908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=tWnPCsEQJtXOB49b8r7lwWgqYWtL31xuIzWMAR6djOQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2079679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=mL9apIHLHtBF3f6V4uAH52HtL4FmJMy%2BH73cWUpexYQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.2081431Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A07Z&se=2024-11-06T11%3A10%3A07Z&sr=c&sp=rl&sig=JgWPYCSdqZ2wNaqhAZreL39%2FE1ZhUCXI4iLBFNlhqhY%3D","expireDateTime":"2024-11-06T11:10:07.2083095Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4922' + - '4911' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:54 GMT + - Wed, 06 Nov 2024 10:10:07 GMT mise-correlation-id: - - b17a74a1-1368-4c45-aa63-bfaf865ad8f3 + - 42b8d02c-2311-4722-bee9-cc67c47b7e69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054654Z-18489d46dccp2df8e3m20gzz8w00000007yg0000000014z0 + - 20241106T101007Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b4u2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=SYHJBwY3XnYmFGSpOwhmnsW4gzlBH5z2gZtuC8ND0UY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.9789942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=Eexb4Lht763DgGcKS6kU2t917xyJJ5Muh5gfBKJ4AKc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:59.9787233Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=i5G7%2Fy7Jgq3IkFRImdEZOovrFR4hCWfuO68VbO4SLRg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.979075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=ze3JJEA2SHg0J%2BbjCHCfMKomfs57sLi7drPVkRrISgI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.9791646Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=x0FRv45Nze8XqUm4WLqqmY6WgOzGw9rQ2T8gyq%2FefgM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.9792507Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A59Z&se=2024-10-16T06%3A46%3A59Z&sr=c&sp=rl&sig=iPogTUTxmk2ojh4FwPHLUOzZANhA2ja%2F%2FxVbn4rtV98%3D","expireDateTime":"2024-10-16T06:46:59.9793336Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=%2BkycUl%2BmW1cFANoenkOE%2BFgvf87WMrQv07eO0W34LIE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6349077Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=QOgsqTv2Au%2Btfx5S2GiaVuW6xp%2BPaOIYrtuDZO%2FlnsI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:12.6345914Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=fHJ6jT9BtSp7iZkJX6HRiS58bBXYyni7zKoHKzG0BHc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6351609Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=Ez%2Fd2KB2z1bl9yPYDcUEFFb%2FJ3rRy8i2JW9%2B8Oo04MA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6352683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=38sQfThHbdAMGhLWLsJX0UEbSgFMwaBdT3itfM80Xk0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.6355314Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A12Z&se=2024-11-06T11%3A10%3A12Z&sr=c&sp=rl&sig=6zH6350t7g6HOLUjwlgTYXmflYxZ2aUatLa0ZTfCsms%3D","expireDateTime":"2024-11-06T11:10:12.6358068Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +1979,17 @@ interactions: connection: - keep-alive content-length: - - '4916' + - '4919' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:59 GMT + - Wed, 06 Nov 2024 10:10:12 GMT mise-correlation-id: - - 8de97872-7382-402a-8d0b-346ff9d24f40 + - 96633b06-b880-4855-a358-a4ad719bf823 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054659Z-166cf497cd4q6m55tfpt35bu6000000007tg00000000ckdx + - 20241106T101012Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b57t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=OSdUUp%2BFRov2UyuXChBMzcvrr%2BeNtr7F0BQIh4Xeqgo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.2879279Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=8l%2B%2FDuZF0cT4jUkW7Bssn6pkbnRQVvb9gM0p6Zop%2Bvs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:05.2875242Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=OEhrA9zLlxIGAhbt9N9FHC60qWy6GZ5gF8i87LdXgPM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.2880894Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=ja0aeP%2BqYoTrXgTQfjJPEbXoVVZAUcKYgtXRUUhhhjg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.2882497Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=G7TXtzJW%2B0ok0FwWnMZLMOps3S8lKrBJD45KJOGVQJ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.2884047Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A05Z&se=2024-10-16T06%3A47%3A05Z&sr=c&sp=rl&sig=8L2Y%2FDKwBGNU2MBumbUzDvWzdU18cK9MjXnuLyUZpVQ%3D","expireDateTime":"2024-10-16T06:47:05.2885621Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=co%2BLn2ki2R9ArqVgijGagseGD3AHD70MIWW0N4u3eiM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0408914Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=Cs6XuJ5mwkWh0SkqdWFHsgVAq10wzwhhAJIjumRPP%2Bs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:18.0404283Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=WRs5LFyVlfXOuiPFyYeeGYxbpxJRx5Rst6KiJADLCoQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0409889Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=3OqhPgDHZpjMVLY5%2F49Agjp2X7tfl4L%2FC1E8wmjbqIw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0410831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=v0hf5X5TCkwf8itFRvLomMqBRQN8Y51peKhfofRNh5s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.0411789Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A18Z&se=2024-11-06T11%3A10%3A18Z&sr=c&sp=rl&sig=ZGB69tEJGveAyFFdaneDWxiVlyOvwUs%2FwQVWYC6nc18%3D","expireDateTime":"2024-11-06T11:10:18.0412707Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4923' + - '4911' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:05 GMT + - Wed, 06 Nov 2024 10:10:18 GMT mise-correlation-id: - - ff281b36-9752-4aec-ba40-43e2bbacdcbe + - d42aed0a-b394-41c4-b551-a314cb8d0fd6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054705Z-165bfd566cfmxlrm0nasv9ne5w00000008b0000000000hsy + - 20241106T101017Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b5kk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=rDzHd40twXvhmX%2B%2BBwEYt4%2BDqICnraLYILVO2%2BN7IVI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.5879211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=diLq%2B0H1zN5syrYJsGNy6F2Q3SE7dHNan4kl58Hy990%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:10.5875671Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=SbK3v2Y5NOqMmqwo2uP5YjLE%2FuNmD9%2BDvc0Kg%2B4lHKo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.5880582Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=f1UJb4NNK51n0aVEMBV%2FBrSXV%2FQ1hl%2F3VWaODh96NUs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.5881919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=FAurIf034lTxeZfUdAjoaQXl52dR8Y1zySSpGccQ7d8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.5883256Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A10Z&se=2024-10-16T06%3A47%3A10Z&sr=c&sp=rl&sig=%2B7ytsipyJzXWVTLcccUJ9BDNPvM2SpI9qHT%2BDjf6wSg%3D","expireDateTime":"2024-10-16T06:47:10.5884547Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=LnWVI2poQYdcNxKMuAWFfCWL3Va4QesSlvD3JRzzbA8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3886211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=uLXRjVf%2FN2ot8uiYrGmMyCXGzE7iMnEOogRcSJJE9E4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:23.3883533Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=ISsSHUTmyApUf6WsjL%2F8GlK0%2F4bE7idEAXzvyKcG%2BbE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3887039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=1IsOTGDYebJc3ZZBiJ2qCC65NN%2FsBVz6nAS1Lz0xIm8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3887835Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A23Z&sr=b&sp=r&sig=x5BziyqGl1OrhKgzca9fTbSYzTVs297f%2BTI8PG0DElM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:23.3888608Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A23Z&se=2024-11-06T11%3A10%3A23Z&sr=c&sp=rl&sig=322g1oBo0hnupghGEiu%2Fz%2Fduqx9%2BKsq8%2BdRfTx4K5M8%3D","expireDateTime":"2024-11-06T11:10:23.3889364Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2146,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4933' + - '4921' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:10 GMT + - Wed, 06 Nov 2024 10:10:23 GMT mise-correlation-id: - - 0dc0adc5-3aa8-46c2-aaac-e461db9caa12 + - b1df6e00-61af-4337-8e0c-4a7e8de64b42 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054710Z-165bfd566cfqq8ps4f827fpfh8000000022000000000764r + - 20241106T101023Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b5x7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=r1YVBp2kvRyMIcCbIXebUGYaFeyzFxUYo%2BKtuaAxUY0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.9110722Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=kwaySZdQXBAj96HMRLnV42cR6CFtFXCDvaHSIw6a31I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:15.9102666Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=zm58XoGS47CSVcQsT3QXkDWPBOsVfropTWLb4Dxd6yQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.9114426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=JWEcrIbiA%2FpkzexT4PQJTIvLZGVxS%2BnBPtHhWE0p1K8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.9116467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=oMq4uwiQo2F3rhNnF%2BnqPL%2FpCvnb0e4HURFqWqXnSAo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.9117364Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A15Z&se=2024-10-16T06%3A47%3A15Z&sr=c&sp=rl&sig=Ii%2BFQsLEwFHcQNh2XRwtNXAiJNXPnTPj%2B%2B2hpZMgnrs%3D","expireDateTime":"2024-10-16T06:47:15.9118327Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=b3OL1jz0ZzJS7aQ2rUx0lcqWjocqox1jUPdcqXvJ6t4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7614181Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=9x2ERuI7bcle%2FBZY7enN6ElLhXVNAREbzbH36aihrpY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:28.7611429Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=RoiyNDfFS79ZhtgBale7lFSd3vfO2vJlgIVRsYgpJTc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7614915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=4zGE1DkoVL0tv9mdrcVCox26PY7xX%2FrKV%2Bffucc44UY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7615628Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=zo8A%2FgEfbj0a8G%2BHKR6dPco9UsMH6hp55ORphKr8idc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.7616397Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A28Z&se=2024-11-06T11%3A10%3A28Z&sr=c&sp=rl&sig=oxl3tMnnsZih%2FuYcbZYgkKoBAtxzU5wkASHCxmboYSw%3D","expireDateTime":"2024-11-06T11:10:28.7617109Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +2105,17 @@ interactions: connection: - keep-alive content-length: - - '4923' + - '4913' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:15 GMT + - Wed, 06 Nov 2024 10:10:28 GMT mise-correlation-id: - - 899eda91-31bc-4ea8-82dd-016840c878cc + - bbfcde36-b994-49e7-be88-236a6d69567b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054715Z-18489d46dcck852hghpv4950b000000007x0000000008y2x + - 20241106T101028Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b66g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=yxxh9W9Xn2Ex2dsp11XcW5gyypyOdLrGiqhvjn4cmn0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.2772739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=Dsc5Im2FP1nxcPsSDfmigYnXZBeWTs%2FwOU1mY2sLWPY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:21.2769301Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=vbCcBcqk2yBvEU3bFBjAUqQSkgYt0s7DxNyXqquAFiI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.2774446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=8%2FwS9BZ0gbDOTezXJZSU0xOSwMqsuXw%2BaQAoNbHcdV4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.2776285Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=%2BRzBJo%2Bzl8tBHmhvkzCMxemRgJR6WfQGEorChnZnJYk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.2777982Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A51Z&ske=2024-10-16T12%3A44%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A21Z&se=2024-10-16T06%3A47%3A21Z&sr=c&sp=rl&sig=jrGRSHtQXbMxmt1AT526hl2kCIsG0IdY2x2uWUnjL6s%3D","expireDateTime":"2024-10-16T06:47:21.2779653Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=gAKBPWH7V%2FgdAR%2BDucFg1p19Tw93oMzbKVlpe2IUmb0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0994656Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=MTkUGV2WDrOSNzaMh7kkPKAR%2BrDnZRreGlcm9AaofJY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:34.0992655Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=5LNmtYzhCfg1jR9L7NauH1ZZTRjUWjPyvv%2BQhmCWJmM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0995566Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=i2TfQ1x%2BiGda%2B7CwEXWMUv14eLKXUb%2BzsPBlSVClps8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0996454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A34Z&sr=b&sp=r&sig=xwunyLCksVm6YLBn8REWZURT3P2XnMCkWX1kMU8GK8E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:34.0997687Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A34Z&se=2024-11-06T11%3A10%3A34Z&sr=c&sp=rl&sig=yw8V7lwsDLT6Bc8y3x9E8voZt4lyEXLyf9EVLwBiyDc%3D","expireDateTime":"2024-11-06T11:10:34.0998652Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2230,17 +2147,17 @@ interactions: connection: - keep-alive content-length: - - '4917' + - '4915' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:21 GMT + - Wed, 06 Nov 2024 10:10:34 GMT mise-correlation-id: - - 5fc5e58a-60dd-4409-9ceb-63994ee2f16e + - d651502e-e84e-4d98-b598-11c90bfaccba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054721Z-18489d46dccp2df8e3m20gzz8w00000007u0000000009yge + - 20241106T101033Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b6g4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=RpMEdVerrWwhbf0RvJcL4iwg5PTDSeckosoW0JroBnA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.5322576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=OLRhLuwGR6OGCFMmfl%2BCis2ztMrb%2FLHmOw7Kr5yo1fc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:26.5318531Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=VRbafkFaozHx6Az%2BftLkZ8JrkOTJiGlrxv6k0qF7Hqo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.5324143Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=baXiT5VuO0heATzRWPeq6C61YcQfLaJQqWOt0vs7drY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.5325968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=OgeowwRq3%2B5%2FUSPU8tRE2vXKtmlLMTzscTLsb%2F91XGg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.532775Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A26Z&se=2024-10-16T06%3A47%3A26Z&sr=c&sp=rl&sig=88WefxJC%2FBoB%2FNHpzXkRDC4PMaPQil6Mi6m1rDMwb7o%3D","expireDateTime":"2024-10-16T06:47:26.5329451Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=Ur7YIJHqyyZ60DJEaA6JCyN0tzUwT2hbvrebZJvK1s0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9996362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=iWDyNVVtLy67k9shfdQ3Hede2WNYAloUbPTdJcgSKVQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:39.9993602Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=3OaABW78hFhlyu9GD%2FXEIAv15yAbgX7y1wjg4DNT46c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9997303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=OQmWTsIAMSGTPdTptgaV24nkT6XkW5AxVy8Ome%2BfEZQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9998186Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=XUBci4iC%2FBxrsBjqLqOdCTg4rZmop0o6cA0k%2BDyKm4I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.9999126Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A39Z&se=2024-11-06T11%3A10%3A39Z&sr=c&sp=rl&sig=5EUrRW1Mt%2FTZi%2FWj8oZXYT7yPXjl33F%2BB8YOnNNtppo%3D","expireDateTime":"2024-11-06T11:10:39.9999991Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2272,17 +2189,17 @@ interactions: connection: - keep-alive content-length: - - '4922' + - '4915' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:26 GMT + - Wed, 06 Nov 2024 10:10:40 GMT mise-correlation-id: - - 004bec99-6052-462d-934d-5e1665d83823 + - 0144c7ff-8885-44ff-86a3-95da53dda15d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054726Z-18489d46dccd6w2hyw4dcpanpw00000007vg00000000ntnc + - 20241106T101039Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b6uq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=L2s2lWD%2BAfch%2F57dwGRtS%2FIHnDGn4BXEi9IMq0p%2BPVc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9114486Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=K2dkvtBPw7rQxxhzlRISpHRCLaAp7%2BvcBP8ftkc1s2Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:31.911237Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=DeFS4bkmbjRqPg5GzMhEKATiWlHSiijU8X%2B7ldEYbdE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9115375Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=bSORrmDKEN5LOxeTIUatsfHQEYr9RqOks%2Fe0LuDEiB4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9116536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=w%2FbJj9m8S9ajBVhEoavwgLuQ%2FtMv%2BXALB3owgLEDaeI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9117537Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A31Z&se=2024-10-16T06%3A47%3A31Z&sr=c&sp=rl&sig=85YebKoXJfTKCYaKqkGTXR0l5ECcmtG4o2KSxgsb8Ks%3D","expireDateTime":"2024-10-16T06:47:31.9118467Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=jHk4wZ4eIfKCHnqErlSLBF1GmH2veq4%2F%2FaBkeH7Uwcg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3565028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=OpPGgKmhexTgHPh0Jjz1yPgLtLADXkbR5BjmpbEeCD4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:45.3560158Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=ZC2Mt7RiE57DEf%2FP8TxOxA2XsAI4CUvIUNw83Kq6mFw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3566801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=%2BLmp9d1e24eaNSMN9Yl1hju99Yd2Fln6jmlrq2QwpvM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3568401Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=ue4%2B1hkUeiRVyEY%2FXnn%2Bbae84oFgKeE740UFZTLAkxk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.3570039Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A45Z&se=2024-11-06T11%3A10%3A45Z&sr=c&sp=rl&sig=30%2BtFByGOp6eoqT3mYT1HZaci%2ByKL%2BHdOn8Tord%2FQjY%3D","expireDateTime":"2024-11-06T11:10:45.3571686Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2314,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4926' + - '4923' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:31 GMT + - Wed, 06 Nov 2024 10:10:45 GMT mise-correlation-id: - - 76771dde-214a-4e54-bdf0-245768259f82 + - 2274f7ae-40b7-434f-bfbb-f15444308ab6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054731Z-166cf497cd4q6m55tfpt35bu6000000007wg0000000063a9 + - 20241106T101045Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b768 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2342,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=dX4fRNADn1hAYfkHSDBzmeqnBmGc3RPLvG7RGEehC3s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2152277Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=UX%2BMidsTzBmv7VX7W7QPdFHXBw0gi3QO2XCeMHHmVeA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:37.2147511Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=nKiNcnDZdLO%2B%2F9jsQ64bgAF5GvjOuP5ugjCbIk5tyuo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2154189Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=kJxAZO6kv1MN6Wv1TqwSwKPehX%2FlA%2Fu5rB6sMVBNW04%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2156462Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=XSJWsthCuBHUo3HhMIR7sbRH7wSAxltkFuYwY8U4kUE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2158361Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A33Z&ske=2024-10-17T14%3A45%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A37Z&se=2024-10-16T06%3A47%3A37Z&sr=c&sp=rl&sig=V5gzQfwQ5r4GVVO9brFZf6taGSfXMY%2BIHU6Lvol5rbQ%3D","expireDateTime":"2024-10-16T06:47:37.2160572Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=ls4oILX3ZdTk1y9KqjodWirAQom99o7UqM6pqqdhkLA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.6891389Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=r7UJiYfkkW4ZAhMmEOCNatxuJc4J%2BJtruDgonyEewCE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:50.6887799Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=itClOH07NWy18uQ50tWV4fgKP9yJkhESs36%2B7Ii5qmg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.68928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=ezW7OnKcyP0%2FjlnWdAwYpq0eKMyqaXKD6x5YLK5%2FKeM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.6894174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A50Z&sr=b&sp=r&sig=dQ574BZWdYdlyz8nJ%2BD4pyA7s2kHRYkt7Hmg0Aezcr4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:50.6895526Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A50Z&se=2024-11-06T11%3A10%3A50Z&sr=c&sp=rl&sig=xv%2Flh6ljHF7X0zuJ%2FexOSXFSoXTiJYa2UoHxHXcmgfs%3D","expireDateTime":"2024-11-06T11:10:50.6896904Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2356,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4919' + - '4913' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:37 GMT + - Wed, 06 Nov 2024 10:10:50 GMT mise-correlation-id: - - d7ddeca1-f742-4d23-ac91-b4ed0f7e14f8 + - 2728db13-0b03-4e58-b1dc-a7af31d08387 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054737Z-166cf497cd4q86sbftw3zaubkw000000083g0000000037zu + - 20241106T101050Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b7gp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=U3cbOwl41%2BajLVn7INI8IKHYNbDM%2Bs0P3kkn44Rfm5k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.5764527Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=ZIptXAAVwcaSc05D9OSpLT%2BMSRXsWB7i6uLGlLJ8%2F7A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:42.5759646Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=vAp8nfIQ6sXBEGznqtHuedVrcbTPnUBTp1ls6VjHbkI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.5766011Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=GkcBKrYIC3AYwNCRUS7L7YNyR%2B%2BpFfjlrP%2B6r6Ajgy8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.5767262Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=PUIlTRpNsvfhB%2FQhzazlDIEAWjA6Bit%2BDxj%2BrWLUxNo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.5768896Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A42Z&se=2024-10-16T06%3A47%3A42Z&sr=c&sp=rl&sig=npsaXafxIb04fIeKNit65cvTSwAuvl1w4ZT3dMfJ1Zo%3D","expireDateTime":"2024-10-16T06:47:42.5770101Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=CLtDQWwv%2FZZSomRt3Z1KUyP7QSQX8nHEh3kRrGTbBRM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0334075Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=IpBq0O28%2FoE%2BgvIOv9lnkH%2Bu0nW7vTJZYmp0LlmhhWU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:56.0330192Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=N1kk1Nu%2FkH%2BE%2FMoNLKrL7c4sRN6IuUbU3HXkoXv8N%2F8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0335803Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=w7fBOdTJF3Fcks57nsbpz35XWhyMf7Jc8rKeRwstQ%2BY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0337115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=l%2BOMNp%2BfYVEzLDNYEsO5BxFr4juM5JTW98qS3Y90kqo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.0338954Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A56Z&se=2024-11-06T11%3A10%3A56Z&sr=c&sp=rl&sig=FGt%2BtRFF8AuU3dY8gmo59RShgPB4SVym7EgzK8y9GmI%3D","expireDateTime":"2024-11-06T11:10:56.0340364Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2398,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4927' + - '4925' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:42 GMT + - Wed, 06 Nov 2024 10:10:56 GMT mise-correlation-id: - - a98ebdf7-a58d-4018-8e75-e42b714e4161 + - 28a22c10-f9c4-4f48-9e3a-6794d25060b3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054742Z-166cf497cd45mnb2hc29k63vhc00000007ng00000000k4zz + - 20241106T101055Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b7ub x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=r%2FlFKDWg2ShSByBu2%2F27WqCErNQ8T96W47%2FGd0JZ6MU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.9466514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=vn60kjSCZ9JIZPoicPoOgCa6ixJrfYf4M%2F6vGzT4j%2F4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:47.9463077Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=%2Bu0AMqPxE59OxG%2Fy2JW1BOSEts%2FZ%2BWyGSDdEzzIBx%2FY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.9467996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=hvlBiJyNzVM1rKxakfioCW4eiq86LymbFLrnAExquSQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.9469194Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=9gaR6%2FiTAjENUyoflvvoeYBL0qfgMHCXuF7BKZXWxf0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.9469988Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A47Z&se=2024-10-16T06%3A47%3A47Z&sr=c&sp=rl&sig=Q%2B2p4aD942mRlXkAog9RVxrGGMWEtAn7W6yns2vGZJ8%3D","expireDateTime":"2024-10-16T06:47:47.9471737Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=MfZ2LzSvyIsSHpT8EjNzBx7bXesbjP0z8ZGtRxuIRms%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4007733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=7I208TpxL%2BiCHxASol%2Fg8ZXh96b9h4DXTRNludLNhr0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:01.4003759Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=Rl5XD3Fe69gS%2Fr%2FBiFAIKBG6CeYu4%2BKXJn41M45SWxs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4008649Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=OqD4PBXVSPnYDxK2TF4DbEwPiDwsMrSwPa4sd3PbYMQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4009542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=XaXiMdpuDBuzoKm4uTjNAbtDoOalxp3qLpmEn5vftTg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.4010421Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A01Z&se=2024-11-06T11%3A11%3A01Z&sr=c&sp=rl&sig=rc1HOTwaeowCCiMe%2B0VNSIpAP1Dym15G1LFpCbunFYo%3D","expireDateTime":"2024-11-06T11:11:01.4011284Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4931' + - '4913' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:47 GMT + - Wed, 06 Nov 2024 10:11:01 GMT mise-correlation-id: - - 71215b5d-4595-448c-8b12-ea963b3818ce + - bdf19c5d-9dcc-47c5-b579-99459745889d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054747Z-166cf497cd4r6hmp97992txd7w00000007z00000000094u8 + - 20241106T101101Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b84g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=Uo3bW57LJ2jPlszHSUF6dOQYiIIZcsb0OewSoIx0AXs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.2686576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=L0eKh5G8cnHDwPFNB%2FCvn3p%2BKKsWYTne0e2vfIhVJYY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:53.2683409Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=BiRSmkMPpuA%2BeMmZ9Y0XVI%2FBRkB2Sfei%2F45RDYXHWB0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.2687524Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=ZsdSjU9KpuHX6ANTQxhMmV2b7JcpMmiTUlSkD1Mhb2M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.2688462Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=TlhXOh4yQZ8JdOdj0wZGuOVmfrpksI3%2BBjWV0RWivSc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.2689345Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A53Z&se=2024-10-16T06%3A47%3A53Z&sr=c&sp=rl&sig=7Zad4Hbx2yHVsMQ%2FsLcfvm9cGHsyCiJQUUmXcUNNIk4%3D","expireDateTime":"2024-10-16T06:47:53.2690277Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=pbbW7OkWqdiUeGlK3dDOUntrlcP7e9vJRm2Ljckg%2FBE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7383179Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=Jx5MikvQc1ffMOTXGe5b%2B9GPUpmRx8qFXIW1Z7zBH64%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:06.7378603Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=jAMehx%2Bxrsf%2B%2FgRa0WwNFwGe1%2BGkU1dy73Ot8h88Ncc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7384655Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=DfGZUZaWtnZax0LKNQKsG%2FpmjcYI7UemRCsJfQCO%2FWE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7386001Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A06Z&sr=b&sp=r&sig=eSgS%2FUAT9qeg3e2NVlwXJlfMAbc%2B7DBZwgVk7z%2B50XI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:06.7387312Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A06Z&se=2024-11-06T11%3A11%3A06Z&sr=c&sp=rl&sig=2bjreqIRSjPMsbvxEGtqhmmGtSYX8on83QgfzVg0Be8%3D","expireDateTime":"2024-11-06T11:11:06.7388653Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4921' + - '4923' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:53 GMT + - Wed, 06 Nov 2024 10:11:06 GMT mise-correlation-id: - - cd4706e2-a5ce-41e5-831c-34181b94ba20 + - b0f7fba7-7192-41a4-855d-e26902e6c242 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054753Z-166cf497cd4v8snbtm724w4g2c00000007yg00000000f5uy + - 20241106T101106Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b8e3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A58Z&sr=b&sp=r&sig=2fM5FF0ixS9%2F4bp9xRH1uxmXnR%2BO08Q%2BBoLzQZbxHSw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:58.6743302Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A58Z&sr=b&sp=r&sig=jhuz4p1liD%2BwrEqLvvtykBu%2F8%2FIRyV7FtWLNBfK0c28%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:58.6740463Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A58Z&sr=b&sp=r&sig=JlL733cMNZRsQmFqbdE92%2FVosan2%2F4%2FXzQMJA24Ko7c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:58.6744139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A58Z&sr=b&sp=r&sig=Y5kioUNmi0sGlgMuO4Ner02o7mWUZpUXjJXGbB6ZzLw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:58.6745397Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A58Z&sr=b&sp=r&sig=Wk33Zz%2BFgtX8VuY7YfXaC6apL5RWZEHz0JvPtgVLBGM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:58.6746592Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A58Z&se=2024-10-16T06%3A47%3A58Z&sr=c&sp=rl&sig=VyvGY26dkQvgKBD%2B8TgfqmtSjslj7HySxmzZLjaMkj4%3D","expireDateTime":"2024-10-16T06:47:58.6747869Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=YVwSENKLJH2Qd2NFkkqgbK9ZjJFqr%2BZg6f%2Fb8tmD%2FeM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.0672541Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=6BZkVeuBPqVYfx1sfJ%2BU7OhOXbrvlB8hMOuSPjo6uBc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:12.0668326Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=zEcRcDaAwgaBkEKzRYHtrWEyiedwoUr924BxHnUw2rE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.067392Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=FxbjRbw4YXNEJlSHBGCFaDwMljJg6Ai0%2BtbJPeH3YiI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.0675219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A12Z&sr=b&sp=r&sig=3gk%2B%2BE6Z8EStND%2BSE%2FFrTd5kHq3%2FpVuHT1gMt0b%2F3IE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:12.0676554Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A30Z&ske=2024-11-07T02%3A07%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A12Z&se=2024-11-06T11%3A11%3A12Z&sr=c&sp=rl&sig=60LGP2bc8xW%2B0Az9aVQbVuCNoeCnH177X7JEstqfgN0%3D","expireDateTime":"2024-11-06T11:11:12.0677856Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2441,17 @@ interactions: connection: - keep-alive content-length: - - '4929' + - '4924' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:58 GMT + - Wed, 06 Nov 2024 10:11:12 GMT mise-correlation-id: - - c5657085-b282-4af9-902a-6caa2d146f5a + - 0a84cef7-22dd-41d0-8a5a-03783e4454ad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054758Z-18489d46dcccphr7hbyy83t0cc00000007yg00000000824e + - 20241106T101111Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b8sf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=B3E1OTsTaNotJgJ9T6XqcXVJlLgYI6LNzyjX%2FL49y5U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.0489093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=m0zXEXZHgfFEF13Zq1Nj5ECSROsnfLGQ7gJ8poAyXUE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:04.0485033Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=V%2BmqnEkH0J1zE%2Bdr11x76WRcW%2BR3sFZ6HtZbf5F3HNU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.0490043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=ltR2FSuoqA%2FVId0zRy%2FWdPho9Oc4dbyGTkV%2FleuYm9Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.0490932Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=UhVpE5g9W6VdWYymmkkZuCS9NEPPOqi1FvOmLjXR%2FKQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.0491887Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A04Z&se=2024-10-16T06%3A48%3A04Z&sr=c&sp=rl&sig=a%2FMBpdFUlCehr487cFYRt5DxnSlR%2BF5T3rTiuJPJJZc%3D","expireDateTime":"2024-10-16T06:48:04.0492753Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=OIuqktxxSmNQZjwPZ6cYNr%2BnHAB6O3JdT4wBfFBcSG0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.41858Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=c%2FJx7CSL1Mo4me4ftVYwis3E5Dthj2EP2zJI1CZBfko%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:17.4180099Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=IhlZZ%2B62W22obEW1mrcCULxFalNp5uA4QMyucuZGcug%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.4187949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=ka8FtiSHLgKHi41EQh39H4Md0GJKdXQBzY87%2BFqj7Mc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.4190159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A17Z&sr=b&sp=r&sig=VU81fagTUMJM0jxFj9HSsrD%2BMLXAD1u7z308pEBFVxA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:17.4192208Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A45Z&ske=2024-11-07T19%3A08%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A17Z&se=2024-11-06T11%3A11%3A17Z&sr=c&sp=rl&sig=PjBdPxQsXnQNoa6wWLAQRp2exTkSssp74midcrDzmIA%3D","expireDateTime":"2024-11-06T11:11:17.4194388Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4927' + - '4909' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:04 GMT + - Wed, 06 Nov 2024 10:11:17 GMT mise-correlation-id: - - bb1431c1-384d-4727-9a0a-83cb9b9ebafe + - 162efab7-5f48-44d3-ad13-ae64c699a01f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054803Z-166cf497cd47w9bdc501r87meg00000004fg000000008ptf + - 20241106T101117Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b90s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2511,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=CP1RqXB%2BGRxE4kWQyFXTiz%2BahKzIZHOQLOAjzohRqF0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.2928562Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=A4n2mJBJHZOjKQVP21pplzQYaXqJWKtXJVB96iulhpQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:09.2925506Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=6DijuDkk4IcbiPPJPUCdmurcHQ7btd79HcwpRSuSpVs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.2929437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=b2xj4Y8pA0rnGizbUXp2f2FNdEcOMs4pySPna3M1buM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.2930338Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=AWqL7Jn7ZgKn9sAdyTqz4hltlCM3Kh8BGQrTwYRVFtY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.2931205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T12%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A09Z&se=2024-10-16T06%3A48%3A09Z&sr=c&sp=rl&sig=NMo5Y0YfUYtKgofC1kLOBiesS4h80n80%2B4SScRrUTWU%3D","expireDateTime":"2024-10-16T06:48:09.2932169Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=QQM8v6AEtAmY24oyhfIJfrEhXR118EPwTZ8szT%2Bmjrc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.7684117Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=RnpHV1AcRK0IrOlfPOwIfuJMp3pZHSqhFnJZ74qbcfs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:22.7672427Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=nyvI2KTx%2FMu4m6Bb0erEge66Nndjx5ZWYBmgwsjVNcY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.7688643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=JKwnLRgKaRrtNwvE7ObO1088TmeI%2FScob3xXkfLC8l0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.7695725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A22Z&sr=b&sp=r&sig=PgVWxhdv1ulIyQGUMSNEonecmeZHB13hiRtxnu75XS0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:22.76969Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A22Z&se=2024-11-06T11%3A11%3A22Z&sr=c&sp=rl&sig=HxnE7FFbTO6baxx%2B3Q9bA4w8W4ZgH5SBxq6g4eUdvpM%3D","expireDateTime":"2024-11-06T11:11:22.7700126Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2525,17 @@ interactions: connection: - keep-alive content-length: - - '4913' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:09 GMT + - Wed, 06 Nov 2024 10:11:22 GMT mise-correlation-id: - - 1cfc7611-0a6f-4f90-bc11-ca61e000b96b + - bc6013cf-d074-4f48-a03b-030aeb9a8adb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054809Z-18489d46dcccphr7hbyy83t0cc00000007yg0000000082dc + - 20241106T101122Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b98e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,12 +2553,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A14Z&sr=b&sp=r&sig=xvMqlSWAef7rIJu1VCQizGQ19Vl9EvwlBHhLmIKlF58%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:14.6630398Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A14Z&sr=b&sp=r&sig=3Z1thlAUHgr8Ov5hdBuBY0S2vIHYfjQmz8SiF0u%2B0Xc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:14.662552Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A14Z&sr=b&sp=r&sig=ypJDuIvNQDbxfDqm%2BumvszuqLLWkDGlDD%2B8CnG%2Fmw8Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:14.6632483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A14Z&sr=b&sp=r&sig=f95N%2BtXHZJsajyG0D8nfwj3vfYIUCs8n0uZFDw%2FSdWQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:14.663455Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A14Z&sr=b&sp=r&sig=fKnl1GHqqRuldeppl48qLYC7cJ7hXBwuxTBXfA9Fw9s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:14.6636576Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A14Z&se=2024-10-16T06%3A48%3A14Z&sr=c&sp=rl&sig=Ofbdmtomv%2BSTqfK2ZtaH%2BPYG5ttEKKQ59OCd1G3r%2BtQ%3D","expireDateTime":"2024-10-16T06:48:14.6638427Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=DaZPhf3CcG3RPMTsKzkiFXzpPGHBcgArALxThmDJshQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1273494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=5jRANAOrrmNkjei8AeowIXcelGrdHwiwxHyG3aYRzbM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:28.1265976Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=KURrqSPR2qOVC%2FpajA69Es%2BWInltI3FW6yOJxvMpx6Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1275599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=2kZQh4N5Lif81QdYllv%2BbUgs%2Brr4KeL%2FemUfr5i0b10%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1277469Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A28Z&sr=b&sp=r&sig=mtocneqnJoTRunkt83OnkAer7PhzXle7rLMxQLzG2xg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:28.1279327Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A28Z&se=2024-11-06T11%3A11%3A28Z&sr=c&sp=rl&sig=BdKUUDcMx0E0POH95kBujFkoxbmWgClIT8Jhd4a1uR8%3D","expireDateTime":"2024-11-06T11:11:28.1281202Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2650,17 +2567,17 @@ interactions: connection: - keep-alive content-length: - - '4923' + - '4911' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:14 GMT + - Wed, 06 Nov 2024 10:11:28 GMT mise-correlation-id: - - d3c3e1ab-9ffb-4ce2-bcc7-2f80b6af32ed + - 74e13edd-1fda-43e2-a8ab-5bcdef45910b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054814Z-166cf497cd4dfx7788bvx3ssu800000007ug000000004nte + - 20241106T101127Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b9mr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2678,12 +2595,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=NVUb4asEAC5OKo75IRkQ5qij7orQlI36UmAeQ%2FKITxw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.035857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=AP19cyu0E%2BDNsN%2BJbYalx1BOoz%2FXX%2FLieJbe4tPR6yg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:20.0355693Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=iAtS0WB5QVf8yblXcNsxWulbRE55RdrRWlSl9p%2Bscfc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.0359489Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=MRH05Jlc1mBpzDWRN06fqB4TTq221HsxJ0AC%2Bmufs3w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.0360363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=m0Q3Cgbu8K6RQKa3x4xxvydJBFPaPgeP73TgcBQrsf0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.0361232Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A20Z&se=2024-10-16T06%3A48%3A20Z&sr=c&sp=rl&sig=YCqi%2FQ9B8xp6qa4OSQbzSV6wdE54K36%2BfuAbTRH6eVA%3D","expireDateTime":"2024-10-16T06:48:20.0362046Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:33.987Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:33.249Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=tK9i53B14RczMtds63%2FGmnNfU7XuXZUVSxJyI3ESjks%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4636352Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=2LUdV1itZUcAbO%2BDiD9imxOsLYd1QtiB143g%2FrXxOcI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:33.4620227Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=Do1%2BLTK3NcfZZurWCiUoB%2FvScm7yvdRPME6owh9%2B2yU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4640832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=YUUO4bF46If8jSnWqYfgFEgaGfKFU41EDRzO6tJibtw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4645945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A33Z&sr=b&sp=r&sig=23gFZJ1GSgjOnGNwgq67WV2aPO1UbZbeZnSP%2Fg0qKTg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:33.4649357Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A33Z&se=2024-11-06T11%3A11%3A33Z&sr=c&sp=rl&sig=byDQctl8hQ2IGgHiXco1JDC75gZ7sb3RvmlVSHMgRuE%3D","expireDateTime":"2024-11-06T11:11:33.4652789Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:45.615Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:43.003Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2692,17 +2609,17 @@ interactions: connection: - keep-alive content-length: - - '4924' + - '4915' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:20 GMT + - Wed, 06 Nov 2024 10:11:33 GMT mise-correlation-id: - - 0ae9fdde-e2eb-4a36-a09b-cd4d78a60894 + - 50045f21-5813-4562-9fe7-310fc9c5c8e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054819Z-166cf497cd47w9bdc501r87meg00000004hg000000002x1p + - 20241106T101133Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000b9uv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2720,13 +2637,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=QRP%2BLa%2F0%2FsRM3rczQVxjp6EX7m0yfRqEdPivfBqH868%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.4161766Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=1VwwnYXuTscLzjvUwDpLMjKp7f5LMIZtYYdC4oqxQBU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:25.4159023Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=W4jTUCgVXHFwZ2snGLqa7oDtL8IZkhRdX2FXC%2BwLtxM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.4162624Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=TGWto0Y5c4K21Ge2AMmQkPWXK8TAAwX%2F6O%2FGHSCssTA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.4163526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=zOjpPdZ%2BgYQRvjkejvZWUVITNtG%2FdQLm%2F7mCPvfSUuE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.4164448Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A25Z&se=2024-10-16T06%3A48%3A25Z&sr=c&sp=rl&sig=tcBRkS7kSLoSAkOtQBzqZXYaMQbxUVlzyisXDmp53gg%3D","expireDateTime":"2024-10-16T06:48:25.4165347Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:33.987Z","endDateTime":"2024-10-16T05:48:23.686Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:24.447Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=7II0wrBdhqI6cVY0SlobysiK00rCvPF6lwJMm7OnxbM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7970914Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=nY6KibCiTg81sGloUcfDwxz%2F8M8goHfYJwPjpuXXcEs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:38.796682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=Vacor3KWQoFRbogBB7cTQ0%2FXwCEmxZWkuMiKSdoRvzk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7972653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=wpa1YCxzJg7jQDYkSFDI1YjCrTIO%2BLWFPC670u5IXXU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7974261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A38Z&sr=b&sp=r&sig=1jrWDXqGXVv%2BbVoDkQR32SgSVY60ayfdxall%2FVxtKQA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:38.7975676Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A58Z&ske=2024-11-07T02%3A07%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A38Z&se=2024-11-06T11%3A11%3A38Z&sr=c&sp=rl&sig=dLFEHEgXOyD%2FMuem%2BKqsRPLv7hAnDLJVSNIgRNxREO0%3D","expireDateTime":"2024-11-06T11:11:38.7977058Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:36.97Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2735,17 +2652,17 @@ interactions: connection: - keep-alive content-length: - - '5053' + - '5041' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:25 GMT + - Wed, 06 Nov 2024 10:11:38 GMT mise-correlation-id: - - 79fbe396-a3b8-4ca0-8501-a0e9c91ed5b2 + - 2fa8c8ac-32f5-4b13-8264-6f4305def1da strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054825Z-15484bdf457slw4lnr1b940h0g00000002vg00000000k9m6 + - 20241106T101138Z-184f6b5dbd8qvzg2hC1MAA7guw00000005rg00000000ba11 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2763,23 +2680,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:39.6592928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:39.6592928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a364d689-1622-4106-a518-1a6bf763715b.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":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:25 GMT + - Wed, 06 Nov 2024 10:11:41 GMT etag: - - '"c5019282-0000-0200-0000-670f52a00000"' + - '"fa000829-0000-0200-0000-672b3fd20000"' expires: - '-1' pragma: @@ -2795,7 +2712,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5C34078C9B854D5A8E64E11849877F49 Ref B: CO6AA3150218037 Ref C: 2024-10-16T05:48:25Z' + - 'Ref A: 7CC6913AF6B04EA89C0570D87AF0BFB6 Ref B: MAA201060516035 Ref C: 2024-11-06T10:11:41Z' status: code: 200 message: OK @@ -2809,13 +2726,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=download-test-case + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=download-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=LSC%2FaPlnLnBx0K1Ij2jBFIACVwyhbaF8rSacGQquU9o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.4735749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=hgRZTafECggkuyKWpNTvihmB4%2BYN7v5kPXYVExUmZnI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:26.4732197Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=HLuL%2BYw4bOqoHUj84RkQTZOM7FVa8Oyb0wJHvoVbs9c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.473745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=Qh5c9CIf1%2BxbYoyLxmxzxBqfTR%2FHf88tABdqxhSJY5Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.4739598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=ogLWaDqrzIvKmFgDAa%2FvBgShF1NsKMq7WyCM6NDTw48%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.4741281Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A45Z&ske=2024-10-16T21%3A44%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A26Z&se=2024-10-16T06%3A48%3A26Z&sr=c&sp=rl&sig=yNOBoLNu5ag4%2B5eEZMY5yT1JBtjFJWIl7L%2B6%2FdhGJOE%3D","expireDateTime":"2024-10-16T06:48:26.4742903Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:33.987Z","endDateTime":"2024-10-16T05:48:23.686Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:24.447Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=3Auf%2BEvtCQ%2ByhqcdFx0pmQQDhb%2FXvyEX441lqBU9Abo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2425172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=EqkFs0qi%2BJFYZL1%2F9ed0oX4Dm13yJF%2BCRAiQDhVde%2BM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:44.24171Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=paaL5xA0wWtEkVE8DNLk0CR941krTPIr750PZ1w1%2Bgg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2427915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=INL3pS1Ixw8FLIpYYeyfy6BXJE0jLA9lG6ytKKxHyTg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2431943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A44Z&sr=b&sp=r&sig=eArOyP5d2aYgzIwxlTG3ojaLdv8kL7OSQDJdEJLHzMQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:44.2434631Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A35Z&ske=2024-11-06T17%3A07%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A44Z&se=2024-11-06T11%3A11%3A44Z&sr=c&sp=rl&sig=8lKA4t7sidOLClBnGu47JFQGbBSwTrkuVLOjnIIyCwA%3D","expireDateTime":"2024-11-06T11:11:44.24365Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:36.97Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2824,17 +2741,17 @@ interactions: connection: - keep-alive content-length: - - '5064' + - '5052' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:26 GMT + - Wed, 06 Nov 2024 10:11:44 GMT mise-correlation-id: - - 4c1977a6-da52-4e81-b076-7ac9f0d0c04a + - 724f4489-0ab3-441d-98ae-b90efe82d5bc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054826Z-166cf497cd4jdw4g4y9hv6ku6n00000007ug00000000ac6g + - 20241106T101143Z-18557d4f7b8mmbtghC1SGEzqgs0000000550000000003xb7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2852,23 +2769,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:39.6592928Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:39.6592928Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a364d689-1622-4106-a518-1a6bf763715b.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":"2024-11-06T10:06:49.436719Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:49.436719Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:26 GMT + - Wed, 06 Nov 2024 10:11:46 GMT etag: - - '"c5019282-0000-0200-0000-670f52a00000"' + - '"fa000829-0000-0200-0000-672b3fd20000"' expires: - '-1' pragma: @@ -2884,7 +2801,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2971C114F55A45FAB03F1C9C6BBC6055 Ref B: CO6AA3150220045 Ref C: 2024-10-16T05:48:26Z' + - 'Ref A: B8EDB1F4E1104233A6E23AE1984AAEF8 Ref B: MAA201060515029 Ref C: 2024-11-06T10:11:46Z' status: code: 200 message: OK @@ -2898,13 +2815,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a364d689-1622-4106-a518-1a6bf763715b.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview + uri: https://ab78d593-4701-499f-ae76-863d381c4c67.eastus.cnt-prod.loadtesting.azure.com/test-runs/download-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"fb170d13-f6b8-4791-82a5-292326300c27":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A27Z&sr=b&sp=r&sig=ah2h6xerYP3XOj8L6EwgKWgmE56zlytp0BaAN%2B0CjrE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:27.3491457Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A27Z&sr=b&sp=r&sig=k7%2BAZ7HPxW7Y1n5TjBn5Ty17MVWnnpp9bcDkCOkhDKE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:27.3486748Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A27Z&sr=b&sp=r&sig=AUlDJJeYU5zsPae%2Bp%2FHYSV1QWnNctVZcjITEZSAhUJA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:27.3492826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A27Z&sr=b&sp=r&sig=hvRYSMDMeW9VGJsiBPAWt6mmjHcqip2BQpkFwVxob0s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:27.3494473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A27Z&sr=b&sp=r&sig=L30wkOZdV1oK2dzNrZ4onxG2t8qQYsZb1i1byr9QozI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:27.3498594Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A27Z&se=2024-10-16T06%3A48%3A27Z&sr=c&sp=rl&sig=6O0FxABjjgHOoB84qe43BKFbckv9KXlD83G4Or28X7s%3D","expireDateTime":"2024-10-16T06:48:27.3499971Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:33.987Z","endDateTime":"2024-10-16T05:48:23.686Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:24.447Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=c267rvHkTOFFBMRbrwFuf0IXP5IMb64IMZlE2oB6Rwc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6505776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=Em6X%2BorwB7IK6Auvatd1GT7NmUn6mcYMr0UhAbmZnc8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:51.6501278Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=PO3cW%2Flxpv4sT%2Fu7mX1MnD0%2F2jlOWOBAzqr4wrVeOyI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6507499Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=GV2WB92XvudZy3yVioc8ClfK32jmfyIabOVA5lquvo0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6509393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=2hh8gX7ZncFhx04tPajsmYS0l5B9xDQ0kG3qAtV8o%2BE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6511201Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=t0BO4JP0bs%2B65n8HfGRhBARA3SSGz65DZDJmD%2FVShRQ%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.65131Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=gfFsTxcdYtIznUqJzXF6QmfBj1s2I68cOC5GP8WXvfc%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:51.6514856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A51Z&se=2024-11-06T11%3A11%3A51Z&sr=c&sp=rl&sig=ZXZkr%2Fe%2FltFNxTwXITDiguTEkQJFYC7MZfDOy8927kY%3D","expireDateTime":"2024-11-06T11:11:51.6516716Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:44.37Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2913,17 +2831,17 @@ interactions: connection: - keep-alive content-length: - - '5043' + - '6256' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:27 GMT + - Wed, 06 Nov 2024 10:11:51 GMT mise-correlation-id: - - 222de50f-33fb-4141-a7b6-f537bcdf4d2a + - b545fd9c-b837-4eb8-91c3-84c7e3a8684f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054827Z-18489d46dccgwx6cyqev009zy000000007q000000000h16r + - 20241106T101151Z-er1d798b584jjq9jhC1SINbpms00000005m00000000040eu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2941,9 +2859,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.31.0 method: GET - uri: https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A27Z&sr=b&sp=r&sig=ah2h6xerYP3XOj8L6EwgKWgmE56zlytp0BaAN%2B0CjrE%3D + uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=c267rvHkTOFFBMRbrwFuf0IXP5IMb64IMZlE2oB6Rwc%3D response: body: string: "displayName: CLI-Test\ntestPlan: sample-JMX-file.jmx\ndescription: @@ -2962,11 +2880,11 @@ interactions: content-type: - application/octet-stream date: - - Wed, 16 Oct 2024 05:48:26 GMT + - Wed, 06 Nov 2024 10:11:53 GMT etag: - - '"0x8DCEDA5BF75C61C"' + - '"0x8DCFE4AFDD5C778"' last-modified: - - Wed, 16 Oct 2024 05:45:31 GMT + - Wed, 06 Nov 2024 10:08:41 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -2974,7 +2892,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Wed, 16 Oct 2024 05:45:31 GMT + - Wed, 06 Nov 2024 10:08:41 GMT x-ms-group: - 713ccf3d-dc33-4787-a1ee-6b0cc537c37a x-ms-lease-state: @@ -3010,9 +2928,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.31.0 method: GET - uri: https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A27Z&sr=b&sp=r&sig=k7%2BAZ7HPxW7Y1n5TjBn5Ty17MVWnnpp9bcDkCOkhDKE%3D + uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A26Z&ske=2024-11-07T00%3A08%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A51Z&sr=b&sp=r&sig=Em6X%2BorwB7IK6Auvatd1GT7NmUn6mcYMr0UhAbmZnc8%3D response: body: string: "\r\n","value":78.0,"action":"continue"},"da6c2664-a9f3-4169-83b7-7c8f0c3ab00a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"9c36a43b-b84a-4e40-be0d-623310478b19":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A30Z&sr=b&sp=r&sig=U6by3hg4FiwzwJQrDd7z6GJeLSRbmq4ssEih84yFS20%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:30.1337833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A30Z&sr=b&sp=r&sig=Cc9Z2L39f00q6qxDqfh6rUpgBIyQjkjt%2BvokWqCIu%2B8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:30.1335343Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/f7a9aec4-e02f-43fe-94ef-3e703a0456be?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A30Z&sr=b&sp=r&sig=1kqseRry6JrWZO1bDH1J1P%2FVMjd31BCiQ4cudSRrVqQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:30.1338512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/fefc8d1a-e2b8-4ddd-9929-f22aabc295b4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A30Z&sr=b&sp=r&sig=0rgCK%2Bnll4nPcSN9bQocYCRXAUH1WZxY5y7WO58z8%2Bo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:30.1339136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/4b1bde25-b788-4fa1-9bbb-78326f505bd0?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A30Z&sr=b&sp=r&sig=vdBtGu0UoZ%2BlRZn8p5p0riuTHDAUP1kBQI%2BreQPkOGo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:30.1339761Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/1f1762cf-bb38-4ab4-89bb-a952acee5309?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A30Z&se=2024-10-16T06%3A48%3A30Z&sr=c&sp=rl&sig=yi%2FR0HVVZ11HGkuvAjFA%2FUsexQe0IrrTXxcjxT%2BG1hI%3D","expireDateTime":"2024-10-16T06:48:30.1340362Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:33.987Z","endDateTime":"2024-10-16T05:48:23.686Z","executedDateTime":"2024-10-16T05:45:31.685Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:45:33.633Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:24.447Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"28ca6919-8407-489a-b6df-960a5ad86870":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"d101a0fb-19cb-4b15-ab7c-8f89e03ca9ae":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b2e6c697-6132-49d1-9549-94364a31c5de":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=IO%2FQAjXm8Yk1t7IqnibLB2z9ePOuRQ5VfBCs6n1C99w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.116009Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=tXyRwfHLS4Sv1YTUAtFMGR6wE53SDkvQoO%2Bdu7z51FY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:12:17.1155872Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a1551b66-6387-4377-bee9-71840b70b2c1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=3vlVpQkrk8tmrPT%2FPSyDmJd7hHUFF2kh9uyT7BSgPhA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1161864Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/755f89b0-8b91-4580-886d-344399f058c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=LNYlrK9Ly%2BOQDsdugUPBHE3jR%2FdSg9c6fL0Y1vZIgcg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1163555Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/a3b16540-493a-4a7c-93a3-548dca438a63?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=9gSxb7uLw2rCrBYljHsukHQq3orQlbtdfjsOcqBCddY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1165412Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=8if0vd8Y6zEH0i85HwB6Z11q1qQ1py3o3tnt2I2u97g%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1167363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/fbadfa5d-2188-4ed6-8025-91001ef6af84_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=HqRLOEUxd9FWFqwqBnv4nZ4tuCLa%2FX9bh78MvjwaRU4%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:12:17.1169096Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/fbadfa5d-2188-4ed6-8025-91001ef6af84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A12%3A17Z&se=2024-11-06T11%3A12%3A17Z&sr=c&sp=rl&sig=OBn4m2cb9GBVC6Ihejx%2FkEuNzqkY2WwDnsJEJxtwmQQ%3D","expireDateTime":"2024-11-06T11:12:17.1170849Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"download-test-run-case","displayName":"download-test-run-case","testId":"download-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:45.615Z","endDateTime":"2024-11-06T10:11:36.195Z","executedDateTime":"2024-11-06T10:08:41.858Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:08:44.978Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:44.37Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3501,17 +3551,17 @@ interactions: connection: - keep-alive content-length: - - '5055' + - '6253' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:30 GMT + - Wed, 06 Nov 2024 10:12:17 GMT mise-correlation-id: - - d42c92d7-d669-4580-82dc-d3d0188ca954 + - f20597e0-0562-490e-b951-0c38df29cb7f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054829Z-166cf497cd48w6x2zuxa69f51n00000007vg00000000hxw3 + - 20241106T101216Z-er1d798b584sbn45hC1SIN1a0w00000005mg000000000bk6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3529,9 +3579,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.31.0 method: GET - uri: https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/53e8254b-3c79-421f-a481-883ac2256d0a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A30Z&sr=b&sp=r&sig=U6by3hg4FiwzwJQrDd7z6GJeLSRbmq4ssEih84yFS20%3D + uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/b87f86cf-d713-4d1b-b415-d7e34a721adc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=IO%2FQAjXm8Yk1t7IqnibLB2z9ePOuRQ5VfBCs6n1C99w%3D response: body: string: "displayName: CLI-Test\ntestPlan: sample-JMX-file.jmx\ndescription: @@ -3550,11 +3600,11 @@ interactions: content-type: - application/octet-stream date: - - Wed, 16 Oct 2024 05:48:29 GMT + - Wed, 06 Nov 2024 10:12:19 GMT etag: - - '"0x8DCEDA5BF75C61C"' + - '"0x8DCFE4AFDD5C778"' last-modified: - - Wed, 16 Oct 2024 05:45:31 GMT + - Wed, 06 Nov 2024 10:08:41 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-acl: @@ -3562,7 +3612,7 @@ interactions: x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Wed, 16 Oct 2024 05:45:31 GMT + - Wed, 06 Nov 2024 10:08:41 GMT x-ms-group: - 713ccf3d-dc33-4787-a1ee-6b0cc537c37a x-ms-lease-state: @@ -3598,9 +3648,9 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.32.3 + - python-requests/2.31.0 method: GET - uri: https://o4nsb2mz2nlg9dy3sqm89j0s.z11.blob.storage.azure.net/deed8f7a-f2e4-4c62-91ab-3d3aa6dbbe80/139b44b3-4db7-4bc3-b99d-b11d0e047ac2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A30Z&sr=b&sp=r&sig=Cc9Z2L39f00q6qxDqfh6rUpgBIyQjkjt%2BvokWqCIu%2B8%3D + uri: https://e32k91wdlnznqyvkdc7x913z.z13.blob.storage.azure.net/02d62c42-cd16-43d6-81b2-61ff1452f76e/22dcda7a-afbf-4c2f-9afe-4cfbb6772c9b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A59Z&ske=2024-11-06T17%3A07%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A12%3A17Z&sr=b&sp=r&sig=tXyRwfHLS4Sv1YTUAtFMGR6wE53SDkvQoO%2Bdu7z51FY%3D response: body: string: "\r\n", "value": "78"}, "1c713661-7123-4f81-b446-86818a492f70": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"f4df7db1-e2be-46a3-8d85-80f668860a0b": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "166f0c4f-8d7b-4fb5-a70e-784638748c58": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:47.286Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:47.286Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:09.767Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:07:09.767Z","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 connection: - keep-alive content-length: - - '1050' + - '1044' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Wed, 06 Nov 2024 10:07:09 GMT location: - - https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview + - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 57b13e7e-1ddf-4f64-8d24-b6d1a964a185 + - 40e45c62-222d-42e1-8e2a-509ed4982d04 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054346Z-15484bdf45792m2k6spfmpcgcc00000002k000000000kc5a + - 20241106T100709Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sseu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Wed, 06 Nov 2024 10:07:10 GMT mise-correlation-id: - - 3a0f22f4-d462-4eaf-ae0b-a32ae7c675a7 + - 886b9b93-29fe-40bb-b7aa-dba9ceca2d12 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054347Z-15484bdf457fxddfyvtw44f6s0000000032000000000etef + - 20241106T100710Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssgd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A48Z&sr=b&sp=r&sig=zKSiw0TnTdQRRdy11G4ATHPYpfj%2BXbSuKkiRGiJEprU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:53:48.2108158Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A10Z&ske=2024-11-06T17%3A07%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A10Z&sr=b&sp=r&sig=Z9lTLA4fCObcN7v%2FcEt1AJsj%2FnwOUcT%2Bv6u9K%2Fsoz1k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:10.7078833Z","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 connection: - keep-alive content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:48 GMT + - Wed, 06 Nov 2024 10:07:10 GMT location: - - https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 0025c618-3a93-4bab-b5ab-f475709f7347 + - b2b6c10f-6ac0-42d4-8aa0-22be61b4b880 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054347Z-18489d46dccj85r8e2f8g29m2800000007yg00000000ft4b + - 20241106T100710Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sshe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A48Z&sr=b&sp=r&sig=zKSiw0TnTdQRRdy11G4ATHPYpfj%2BXbSuKkiRGiJEprU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:53:48.6109935Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A11Z&sr=b&sp=r&sig=9KhsfExdjHc54ralGCzPgaCvzBLhbtPpvDwZhpHk7hg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:17:11.7223828Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:48 GMT + - Wed, 06 Nov 2024 10:07:11 GMT mise-correlation-id: - - 9da578b4-3613-4e61-b2bc-f225d60943ad + - 0470e6ee-22af-486d-bba3-33955bbb4a67 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054348Z-18489d46dcc7dl74pe8mubs3xc000000051g00000000gdzs + - 20241106T100710Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssmv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,14 +300,14 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A49Z&sr=b&sp=r&sig=IlRuZ7VID5kpCmpwk22cukVfjbdldBkm3ANuwllkLrY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:49.1714007Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A12Z&sr=b&sp=r&sig=XUFZte3FT6zrv5C9Er3uuf26DkM032LCfkj5UErDC2s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:12.2675046Z","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 @@ -317,15 +318,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:49 GMT + - Wed, 06 Nov 2024 10:07:12 GMT location: - - https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - e3dc1ec9-d5db-47be-817b-796192513399 + - 031a31e9-30c7-42e5-b011-91e92f79f076 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054348Z-18489d46dccvln7t51fh7vb5kw000000082g000000004ecm + - 20241106T100711Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssrz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A49Z&sr=b&sp=r&sig=ADk1LIITtZ3uhfz1aVvcczz%2BSSWfwmLBjyi74vVyzZE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:49.5915381Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A10Z&ske=2024-11-06T17%3A07%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A12Z&sr=b&sp=r&sig=7z27qTrp3MC1oH4zpZ7FiUMweA2nAjAP%2B4QbnuxQ%2FAU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:12.595566Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:49 GMT + - Wed, 06 Nov 2024 10:07:12 GMT mise-correlation-id: - - ede50182-d54f-40bc-9a13-cace1bbae2bf + - 91b53392-c178-46e7-95e2-a382ee91cb55 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054349Z-166cf497cd4q86sbftw3zaubkw000000083g00000000307t + - 20241106T100712Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000ssu6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A54Z&ske=2024-10-16T12%3A43%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A54Z&sr=b&sp=r&sig=iV8cBf%2B%2BswFcH16TrUfNtnUixcIoqq4n0avr8GQVfzA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:54.958744Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A18Z&sr=b&sp=r&sig=kwEgeUUe0YOt1WbvkQ8ojAqA3U1LlrIcfc%2FIZb%2FLcVQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:18.2413056Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:54 GMT + - Wed, 06 Nov 2024 10:07:18 GMT mise-correlation-id: - - 6ac460ba-3962-4c52-bad2-6956d9706ca5 + - 715d17bd-14b3-4335-802d-9fc388ad8240 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054354Z-18489d46dcc5trkwxb4ya4w12000000007ug000000008q1y + - 20241106T100717Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000stg3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A54Z&ske=2024-10-16T12%3A43%3A54Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A00Z&sr=b&sp=r&sig=02ZgekNZZ7AUVuEz%2BaEqwiN3dVXVV0HsdgCkG1sn41A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:00.3479187Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A10Z&ske=2024-11-06T17%3A07%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A23Z&sr=b&sp=r&sig=eDPdrgISvYDCco6I0kcrIg5uHH9CF8nLrnLttMJU36o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:23.5427268Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:00 GMT + - Wed, 06 Nov 2024 10:07:23 GMT mise-correlation-id: - - 63afa7e7-4987-4363-bf65-41439b25cefb + - c5a7e357-2df5-403c-819e-fd2297bf09af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054400Z-166cf497cd4jqnrcydhdctbvm400000007v0000000003hxw + - 20241106T100723Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000su7m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A05Z&sr=b&sp=r&sig=TmuF6EqdCdQYaPtD%2B0SmcN6woyjTZgMbm%2F1ue78yCg0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:05.7644752Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A28Z&sr=b&sp=r&sig=zPlxENQsym0VJu%2BfPbhE2X5p%2FA6x9N%2FLOsi9wSj0IFY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:28.8557048Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:05 GMT + - Wed, 06 Nov 2024 10:07:28 GMT mise-correlation-id: - - 0a595ce7-a18b-4251-81e6-d35a5cc651f7 + - e7d71f6b-3ba4-43af-8a7a-29e4e83a3f8e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054405Z-15484bdf457bt9vdd1e9rbvmpg000000026g00000000knw6 + - 20241106T100728Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000suxm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A11Z&sr=b&sp=r&sig=M3GxkX4NPqlKoOc%2Bb6YQ3%2FqC0%2FaaM5NZInIEilSWBF0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:11.1348689Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A34Z&sr=b&sp=r&sig=qCOjpuRDxHFmhddjJdtspo1MhCaDKkCLM5SbzXbusco%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:34.1735972Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:11 GMT + - Wed, 06 Nov 2024 10:07:34 GMT mise-correlation-id: - - 02cacaeb-19e3-411d-baef-9aa6e02d1074 + - d7d612e9-7680-4627-8208-c2f37371a3e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054410Z-18489d46dccnnh2b19wcyx7sm000000007z000000000978m + - 20241106T100734Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000svkq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A16Z&sr=b&sp=r&sig=y8eyTAplkMv%2BEOB6B0rvDFasnc%2FhZdwlTTuTOsJ%2BysE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:16.5177337Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A39Z&sr=b&sp=r&sig=%2FgVHxL2TyAHwuUFbmnwNqxZkCLiHYD%2B0V0dYDY45d3U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:17:39.4935042Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -567,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:16 GMT + - Wed, 06 Nov 2024 10:07:39 GMT mise-correlation-id: - - 9571ed37-da2a-49ad-a628-381ff6dfcd8c + - d52a5fe7-6c18-4b50-b35e-14f836579b81 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054416Z-18489d46dccggs4rh24eyxmvec00000007t000000000ehu5 + - 20241106T100739Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000swea x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A16Z&sr=b&sp=r&sig=Gy6dMtkDiMtj%2F7jY%2BnGvgHg3WW5XSMIhTjG5MmjSUXI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:16.960292Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A40Z&sr=b&sp=r&sig=BXP929kooTdDSYJSbmI9xxvFqXnBI9sdVNelg04gmQg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:40.692916Z","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 connection: - keep-alive content-length: - - '559' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:16 GMT + - Wed, 06 Nov 2024 10:07:40 GMT location: - - https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - a1ed9ab9-8040-46be-bfce-8836e90c3b9f + - 15d88f32-9636-4757-9bca-318482b39b8a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054416Z-166cf497cd4z4rvk0cprvnxxh000000007wg000000009hz4 + - 20241106T100739Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000swfz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,54 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A17Z&sr=b&sp=r&sig=tKdoEHEppUZnwA6QlZ5kIDWiadJAVKGSh%2BwRCfgDsbM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:17.2731612Z","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 - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:44:17 GMT - mise-correlation-id: - - 828496f3-e04d-41fb-a2cb-fec3a6a739d6 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054417Z-18489d46dcc5trkwxb4ya4w12000000007rg00000000hheu - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A22Z&sr=b&sp=r&sig=71cTfkqn4gY2bBcwJZ6SG9tbryWK8LXZew01aLaKS4E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:22.4851133Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A41Z&sr=b&sp=r&sig=EJu9gimW5pAWazHNXMYiS1jeTyWZJhG3SkJJMX7z73Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:41.0006685Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -791,13 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:22 GMT + - Wed, 06 Nov 2024 10:07:41 GMT mise-correlation-id: - - 8a467260-6c13-40d6-8111-741f90f42b67 + - df0f3738-9918-43cc-9dc9-dd76427d48c7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054422Z-166cf497cd4xh8zq4d721105qg00000007sg00000000g8qw + - 20241106T100740Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000swqc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A27Z&sr=b&sp=r&sig=w312NR85k%2Bwk4HX564mBO7JpTlD64n3qlzaitnkISDY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:27.882886Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A46Z&sr=b&sp=r&sig=6c%2BofejxE0YGgz3OsPwGKKrlo0lHiWg8qjHeq4R8hlo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:46.330798Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -833,13 +792,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:27 GMT + - Wed, 06 Nov 2024 10:07:46 GMT mise-correlation-id: - - 189ad60b-e782-4f98-8ed0-0fdda485e205 + - 8313164f-cd3a-4e2a-93b8-8b5be098dfe2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054427Z-18489d46dcc4mwx2ddastu82g800000007ug000000005f3y + - 20241106T100746Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sxga x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,54 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A33Z&sr=b&sp=r&sig=f%2FYi6eUWGuW7ssTS%2BOQuoZ4fAzSsux7cnqCsN3w8tyo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:33.2502181Z","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 - connection: - - keep-alive - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:44:33 GMT - mise-correlation-id: - - 2d191d62-bd12-40bf-821a-d24f0836e63c - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054433Z-18489d46dccvln7t51fh7vb5kw00000007zg00000000dfan - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A38Z&sr=b&sp=r&sig=lUYMvKRNAxpjBznIsSISzfSHXi1NmBeWrdlJxyS1gzo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:38.6199551Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A52Z&sr=b&sp=r&sig=WNZXk2IubUhMLwTo9EVKAmsE3BvRXL4ohCgrMA9HbpI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:52.3069168Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -917,13 +834,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:38 GMT + - Wed, 06 Nov 2024 10:07:52 GMT mise-correlation-id: - - 3aeaa86f-afaf-4286-8359-cca770463ce4 + - 7db4260f-7a0d-4047-9b05-eaf56a85867e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054438Z-166cf497cd4v8snbtm724w4g2c000000082g0000000052m6 + - 20241106T100751Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000sypz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A44Z&sr=b&sp=r&sig=o1AQ%2BPb12gwzfQAtxVx5EqSZKNjcIvssK7seCFJSkSI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:44.0021565Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A17%3A57Z&sr=b&sp=r&sig=y%2BDWfJ4foKchU4IGcbrau0en8dyCL1mC2IHnj%2Bj5iUw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:17:57.6067032Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:43 GMT + - Wed, 06 Nov 2024 10:07:57 GMT mise-correlation-id: - - 6599e4f0-db3d-41ae-baff-bc618df2c0bc + - 11038a69-500c-451a-b8c1-a35c3105e94d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054443Z-18489d46dccfp7rz6a82yt7pbw00000007v000000000dfk1 + - 20241106T100757Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000szsw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A49Z&sr=b&sp=r&sig=4E6E4nKTS2EePAxZvtxEUDIkz%2B4uj1St2S%2BMcmm9kBY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:49.2704284Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A02Z&sr=b&sp=r&sig=2ppJtllQVsEDKGkpIEgJsoYW7noRwgcvirEvpNCdGYk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:02.8989792Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:49 GMT + - Wed, 06 Nov 2024 10:08:02 GMT mise-correlation-id: - - 9e501a84-d229-42a6-aae4-eef3dae078e5 + - d1e9666d-4e2f-46b0-bf10-be0e0b9137f7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054449Z-166cf497cd4q6m55tfpt35bu6000000007t000000000dz5x + - 20241106T100802Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000t0wg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A54Z&sr=b&sp=r&sig=6HflOENd2kSpvFlgNA9ZtckhAnOZ2BobYPZP%2FxXSJY8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:54.615214Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A18%3A08Z&sr=b&sp=r&sig=be8MICbbKneUE90SOf%2F7GpYN9A%2Bb%2FpDlmgJ7ny82DCo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:18:08.2034928Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1039,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:54 GMT + - Wed, 06 Nov 2024 10:08:08 GMT mise-correlation-id: - - 064e7662-74a1-4a94-8163-82b9111a73c5 + - 0790f3e8-fb9d-44ea-b6a4-ba23ad784718 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054454Z-166cf497cd45mnb2hc29k63vhc00000007rg00000000as3u + - 20241106T100808Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000t1tf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,13 +984,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests/list-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A54Z&sr=b&sp=r&sig=o5HD2tqITo3tX7yLHvhZoWNQZX1VCV9%2B9k1Gt4BZDxE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:54.959746Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A54Z&sr=b&sp=r&sig=%2BU%2FdiPPEN8dIjpRjmgQiTOaAZDnr0jY%2FLSkCbxZ1zwE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:54.9600657Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A54Z&sr=b&sp=r&sig=V%2BoTEARi%2BnQFEPDhtrXT8AC0pPHGfQRY0KJdMHLGq%2Bo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:54.9601715Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:47.286Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:53.87Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A08Z&sr=b&sp=r&sig=a179Tuq0Ujt%2B4Ow1jWNSwCfHU59wRd8oQOKuI9ZehQU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:08.5074564Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A08Z&sr=b&sp=r&sig=QrUh%2BIKChlUEH81MBBhFkxupyBgXrvcntyOmiINsyXA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:08.5389614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A08Z&sr=b&sp=r&sig=IGDa5dICTQojtP9FpWclqyIbW29a8NmSz4ius6J5I9Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:08.5390404Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:09.767Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:07.245Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1082,17 +999,17 @@ interactions: connection: - keep-alive content-length: - - '2776' + - '2762' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:54 GMT + - Wed, 06 Nov 2024 10:08:08 GMT mise-correlation-id: - - 67da15b4-122e-41e4-8e53-60e02fc21eeb + - a6e4ff80-384f-4379-994e-a0367f6997df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054454Z-18489d46dcc7qds9rw9wr310dc0000000650000000006qfp + - 20241106T100808Z-16bf8d9b4c7w4l4chC1BOMu1nn00000006dg00000000t1vm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1110,23 +1027,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:14.5148887Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:14.5148887Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c352c120-0c40-4080-89e3-75ba61bc0731.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":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:55 GMT + - Wed, 06 Nov 2024 10:08:10 GMT etag: - - '"c5017781-0000-0200-0000-670f52890000"' + - '"fa005927-0000-0200-0000-672b3fb70000"' expires: - '-1' pragma: @@ -1142,7 +1059,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 929F7F8458544094935E122939D5B419 Ref B: CO6AA3150219053 Ref C: 2024-10-16T05:44:55Z' + - 'Ref A: A71B838DFA91467B8D86BA7910A50D24 Ref B: MAA201060516023 Ref C: 2024-11-06T10:08:10Z' status: code: 200 message: OK @@ -1156,13 +1073,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=fyivhxJsbEKVDwohrlletPkDwRiFpzZAKetDUcIKRp8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:56.3639596Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=mjkLhXVvLuCsZU8RJCrRroq3QTcscSj3gJ3CReG4T3M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.3642753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=hWEHqn6InissqF9qdy8eLvQ7Ai%2BxWe8T3Kkhmm7EwsU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.3644151Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:47.286Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:53.87Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A12Z&sr=b&sp=r&sig=fYTbVGNEojzu1rSCe%2FH7xgQa%2FAeIgEG1AeKWLkWF%2FQ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:12.7835381Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A12Z&sr=b&sp=r&sig=03kaJapFqv2J7D9Ez0QoOSXZRJNXuaa210%2BvsmINan8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:12.7839295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A12Z&sr=b&sp=r&sig=bZOgK5t%2BC7mEzQ9Hk5nZOE4D2uSf9AVLZhuWDEFOMVE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:12.7841024Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"list-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:07:09.767Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:07.245Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1171,17 +1088,17 @@ interactions: connection: - keep-alive content-length: - - '2777' + - '2780' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:56 GMT + - Wed, 06 Nov 2024 10:08:12 GMT mise-correlation-id: - - 3fc31768-609c-4c48-9267-21c36ea8ba5e + - f4abbbd0-fddb-4b6f-873a-086d2dbbfce1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054456Z-166cf497cd4q6m55tfpt35bu6000000007sg00000000f1qg + - 20241106T100812Z-1556595cbbckqfc2hC1BOM1r60000000069000000000pvh4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,23 +1116,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:14.5148887Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:14.5148887Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c352c120-0c40-4080-89e3-75ba61bc0731.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":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:57 GMT + - Wed, 06 Nov 2024 10:08:14 GMT etag: - - '"c5017781-0000-0200-0000-670f52890000"' + - '"fa005927-0000-0200-0000-672b3fb70000"' expires: - '-1' pragma: @@ -1231,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 173387EC2C5746FEA9FB8ED9F5D8A8DE Ref B: CO6AA3150219009 Ref C: 2024-10-16T05:44:56Z' + - 'Ref A: 782B94EF50134D9ABC3579FD1881DF92 Ref B: MAA201060516049 Ref C: 2024-11-06T10:08:14Z' status: code: 200 message: OK @@ -1245,9 +1162,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1260,15 +1177,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:58 GMT + - Wed, 06 Nov 2024 10:08:17 GMT mise-correlation-id: - - 6152e223-66d1-4101-9784-41b5a3f7bfda + - fa294f2d-ab8b-4f71-a5be-143881f2cf24 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054458Z-18489d46dccd6w2hyw4dcpanpw000000082g000000000gum + - 20241106T100816Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cfee x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1292,31 +1209,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A53Z&ske=2024-10-16T19%3A44%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A00Z&sr=b&sp=r&sig=95j%2Fd%2Fa%2Bz942ajvGerrg8AlWtET%2BA6kxJNxUj7Cy%2FGQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:00.3126646Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A53Z&ske=2024-10-16T19%3A44%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A00Z&sr=b&sp=r&sig=X1PfCPZeLo%2BcqM%2FTHGsWOTjZ%2FqCPkzqjco%2FcprZj6yk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:00.3124099Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A53Z&ske=2024-10-16T19%3A44%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A00Z&sr=b&sp=r&sig=uo8fmq25w33CjoehXBxHepl1xEGXbdqUTo7C0F7Pc9I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:00.3127469Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A53Z&ske=2024-10-16T19%3A44%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A00Z&sr=b&sp=r&sig=ssx46W568xbu9pF5nUW0Dbmjra9in5lMifZWoABGJK8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:00.3128244Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A53Z&ske=2024-10-16T19%3A44%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A00Z&sr=b&sp=r&sig=2OmVg5REXfY%2FNbRavk5%2FhqfZh%2B%2FuLtj6Nx0EY6YaNXo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:00.3129111Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A53Z&ske=2024-10-16T19%3A44%3A53Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A00Z&se=2024-10-16T06%3A45%3A00Z&sr=c&sp=rl&sig=LSiVJU%2FdCpoo%2FX6j7HfiKFwh4nFf%2FNg49%2B2hRo3jNQQ%3D","expireDateTime":"2024-10-16T06:45:00.3129859Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:00.098Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=HNMHj7tJ9aXi5VbMZ7KiARsR0aeLWNEqb0qG3ACdtQg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.6847387Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=TG9haddcbfxqnKoaOo6LGhGmZNd%2BJSTIq8K1T184CoE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:18.6844288Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=hdAv7uR8f2pIWqxzm1LZ0PW9v44FGuZmIMExZkbZdqs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.6848605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=pJEFy0WwkqmdqPFRnrk4uOTCO5QEmGm%2BJN1Yd79njA8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.6849797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A18Z&sr=b&sp=r&sig=wXji5pfj4xUY3wwbhP3lchJ8z1wK987notixEcmIiyM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:18.685099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A17Z&ske=2024-11-06T17%3A08%3A17Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A18Z&se=2024-11-06T11%3A08%3A18Z&sr=c&sp=rl&sig=8Sxai%2BT82%2FUfEGRUS0b0dGYuPYTP0yKAi%2BAETRk%2FqPI%3D","expireDateTime":"2024-11-06T11:08:18.6852116Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:18.439Z","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 connection: - keep-alive content-length: - - '4877' + - '4848' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:01 GMT + - Wed, 06 Nov 2024 10:08:18 GMT location: - - https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2022-11-01 + - https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2022-11-01 mise-correlation-id: - - d24e2776-1237-459d-bb42-3776ff4232b6 + - 617413e3-bbe1-4c26-ba11-a24910852592 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054458Z-166cf497cd4z4rvk0cprvnxxh000000007x0000000009b9c + - 20241106T100817Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cfha x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1334,12 +1251,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A01Z&sr=b&sp=r&sig=cpy9CWMZ71rMaoIBVgaVA%2BmfbzmdkxVNFxmrzpukILA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:01.6932968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A01Z&sr=b&sp=r&sig=SmqWDty5KYPydW%2BJfQvAW8RE2wQRDDFWeYY0RCySqDg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:01.6930945Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A01Z&sr=b&sp=r&sig=9RsfZcYf9X%2Bd2%2FrLs3F7rO9Blh8syV9iGX2QSdNoK6Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:01.6933829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A01Z&sr=b&sp=r&sig=0MldPZfCrJDn4TgMAM%2By%2FwuJCS3RHxaafAj9e5qND6E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:01.6934671Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A01Z&sr=b&sp=r&sig=fsNtYFJHPnra9zaHQ85PA9Juntgi0XZl5DuWmz4UMSE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:01.6935562Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A01Z&se=2024-10-16T06%3A45%3A01Z&sr=c&sp=rl&sig=hX0WYr10nTDExfFSVlwyUZPgCPreRmeXSKB9TG0mc%2BU%3D","expireDateTime":"2024-10-16T06:45:01.6939366Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=ZjVhFl4A0q613oLPJ6goytzLeTWKpyUj%2BzUN4wLpOHM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.200856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=tzDCR2%2FfoZpcAOoL94JOG2G%2B7kBdRTSk%2FmxHNKh5SDk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:19.200027Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=l8riUEQJIwdktVnFXUq%2BuVPL8L%2F7mTCR%2BWLkTaNWw%2FI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.2012497Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=bBdKZ7HgcZ8J0U%2B6ZWdxTyyKU%2BIAxxEtq6b6y2GKEgA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.2015155Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A19Z&sr=b&sp=r&sig=QyAI1HUZWvAecMwv87nTh9wuXYWF9Qd%2BTgDgnxLKBT4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:19.2019137Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A19Z&se=2024-11-06T11%3A08%3A19Z&sr=c&sp=rl&sig=JLoEqZ%2Bsn%2F3kt6m2uimLoJ%2F1vAJvX%2BZAsox41HeenFk%3D","expireDateTime":"2024-11-06T11:08:19.2021784Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"NOTSTARTED","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.082Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1348,59 +1265,17 @@ interactions: connection: - keep-alive content-length: - - '4904' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:45:01 GMT - mise-correlation-id: - - 077f1ee2-be99-44cd-be76-bffc53fb5175 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054501Z-18489d46dccggs4rh24eyxmvec00000007tg00000000c3uh - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A06Z&sr=b&sp=r&sig=ViJ9b5MTjxDttIRRNzwuW%2BAvKGQCcqKzJtlrAj1csac%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:06.8613088Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A06Z&sr=b&sp=r&sig=cLTOf8Izylt2jzwuKtzv0d4H9G1c2ViiC0kXamlUOck%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:06.8606428Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A06Z&sr=b&sp=r&sig=ov2ILBZhUezAa4MshW%2FNkjamU2%2FeGbDlvVNm9nyRmZU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:06.8615612Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A06Z&sr=b&sp=r&sig=PwxI0OZJBA85TREikeZSeB94fp97%2FPQ9fFImySYT3Fg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:06.861685Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A06Z&sr=b&sp=r&sig=cLWMcfE0nWgl%2FJFRru9k%2FUrDw29dEhvWRZu5k%2BAh8Y0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:06.8619575Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A06Z&se=2024-10-16T06%3A45%3A06Z&sr=c&sp=rl&sig=Hskpb2rJlNctUA6nDTtnXwQA%2BA%2FuRMuOnd%2FU37Ty5ws%3D","expireDateTime":"2024-10-16T06:45:06.8622367Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4909' + - '4910' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:06 GMT + - Wed, 06 Nov 2024 10:08:19 GMT mise-correlation-id: - - 68c64224-2433-46fe-84f8-4ebfb55ba24e + - 1c2a209b-3c46-41f3-bb5c-4956080ab825 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054506Z-18489d46dccggs4rh24eyxmvec00000007u000000000ak4a + - 20241106T100819Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cfsd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,12 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=Vdw8Na15au3FGmdYCdi6AK6Tt3a%2BytNQKt%2Bl1BdJTGE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.2653377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=8jRXviuYSn1phqbhGL3PbER9x1srpZa4iIpSAwuUZ%2Bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:12.2649172Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=4O2HzpGXeBzko9ksPasdloCuIjNsOjtTLWCyCQZZTmE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.2654749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=WM5NsxdGo6LocgZ%2Fqen2Bi3y9KV1FVmkAcbS%2BSQb98g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.2656287Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=OgiIsBdeheLUOf8EW0y6c3gZiUnvpLAXqSeS27EaW9E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.2657847Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A12Z&se=2024-10-16T06%3A45%3A12Z&sr=c&sp=rl&sig=pYOe5kptntb8VtlyowSGINbXaefMoYk9qudwv7xgT0A%3D","expireDateTime":"2024-10-16T06:45:12.265932Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=6UhPy3MqpIRUArR02J5TKyeIYJGkvg7KhuHYBdKsbZs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.5478598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=WWLU%2FMHGwxWUQJu31nlNVRbBchplu8f73YJlI1FC1lE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:24.5475437Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=ZE5Y%2BNHP0TOw4G%2BrlF%2BR6lHLfNFPoIjm1nB9b5GE6WM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.547982Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=T11NeFeWag5qO4qKll8shmdRvhcGC4vjvlnr2fdPq%2B8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.5481068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A24Z&sr=b&sp=r&sig=HfIPIZPhxD%2FY3sBhjI%2FpjReLSnhL6avXEUjz1TxZTzc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:24.5482333Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A24Z&se=2024-11-06T11%3A08%3A24Z&sr=c&sp=rl&sig=a1V3IdzVCEd1RzFSMGxbmp7QANH0eAQeLq8C%2FXde9Ic%3D","expireDateTime":"2024-11-06T11:08:24.5483571Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1436,13 +1311,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:12 GMT + - Wed, 06 Nov 2024 10:08:24 GMT mise-correlation-id: - - 1d6fbc94-e4ea-4f35-bb34-85c8fb7bcbb7 + - c445b480-6a3f-461c-b7eb-d3dd61b94b81 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054512Z-17f5d849667qxjvzggu6atsuxc00000008cg000000003yvw + - 20241106T100824Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cgcf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A17Z&sr=b&sp=r&sig=H%2FmN%2BIhaWQ36gIzcYWhFnQ4wRkpxE7BzjNCiv3eXwCI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:17.5777631Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A17Z&sr=b&sp=r&sig=6CfG4yS4ycGFluxqSQ%2BL1%2BgV8LxdewbYAynscN9Dqvs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:17.5773842Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A17Z&sr=b&sp=r&sig=tgnam8L0xLEC3iUjmFywjKWWgNKARLkm%2B3w7VkgT6Ew%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:17.5779493Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A17Z&sr=b&sp=r&sig=B1ikaZPu66F3lxljNax4MRLc5d8dVDbprYhSyOtuEi4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:17.5781467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A17Z&sr=b&sp=r&sig=ObGpdK94yTvKljFMjIKOO49ANfh%2BHeqVh5QtR92VXBo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:17.5783109Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A17Z&se=2024-10-16T06%3A45%3A17Z&sr=c&sp=rl&sig=ounkbuCwS8SSVR5RVNooKDq31CqLhNchcQ6AT7Alyq0%3D","expireDateTime":"2024-10-16T06:45:17.5784718Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=Pm20nUXf0rzR4GzP2fxQbYtYpA6npc0Zq7xmk4TwgAg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.8676498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=%2BhTD6o8XQvVWWrriChBPP9nrw2eEZ7s6d6F25eDc%2BpY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:29.86719Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=Gq9FrTpFE6UBg574TJa4Vf0cl%2Buj7Ga1JhgN0cZhaD0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.867829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=yupQq8WEx3lVyobluc4hDH1V5iZA1vRKyB%2FkJPTAgVg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.8680091Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A29Z&sr=b&sp=r&sig=%2FLQ%2Fd9wHauDQg8BSDsgcHF75v6aa2rdwqYkbNa9TYVo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:29.8681861Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A29Z&se=2024-11-06T11%3A08%3A29Z&sr=c&sp=rl&sig=OsX4Jq1SOVnCef42pnxKKJXKb7AY7ayFMxutKziXJpk%3D","expireDateTime":"2024-11-06T11:08:29.8683622Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1349,17 @@ interactions: connection: - keep-alive content-length: - - '4902' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:17 GMT + - Wed, 06 Nov 2024 10:08:30 GMT mise-correlation-id: - - 648cc78f-f9b9-4389-9f42-dec86817c34b + - a5a404c1-b61b-4bcf-91ce-49cd3721d10b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054517Z-165bfd566cfnpqk5xu5eeg1q4g00000006v000000000bt0g + - 20241106T100829Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ch0q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A22Z&sr=b&sp=r&sig=KWKt45o7VwEsxUWXRg0lsJ4oWVLJd5h291h7SCD5RzA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:22.8719032Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A22Z&sr=b&sp=r&sig=s5VfLYurve6WpVjSiNU3blJHLhLcINxHhFuj0sZlVXE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:22.8714729Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A22Z&sr=b&sp=r&sig=Xaa%2FNN9mLn6FA%2FIfgBHCl61pf3KeqcynWNoTdzhMEXA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:22.8720416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A22Z&sr=b&sp=r&sig=zg3B6HhodRITkBcP7ysyTPVKvl78oOk01WJ3Oq4hTB0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:22.8721868Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A22Z&sr=b&sp=r&sig=Ott77hFRlUHKemd%2Fe%2BJWxQc0qZoLJvGwdlsHKzEieXo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:22.8723303Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A22Z&se=2024-10-16T06%3A45%3A22Z&sr=c&sp=rl&sig=5cTjeHcOgx8mLMO1MZ1SMzGIf8xYQo1PrNr8aLnBf40%3D","expireDateTime":"2024-10-16T06:45:22.8724725Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=aVPY64Wbc749p8QeiOMPznyoyJ4VSu8bTWmksXHCGRY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.2614372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=3d5DOHS73yU6rK9gFqRyLDuGUZ6cokXMqXDel37hhz8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:36.2612174Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=70MiunPUADquGqTHKkYVKfuXRsHRZJih2Stv19mTB3U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.2615243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=WJ8LK8HkBgonBVOpaggLhJm8cgb3wG163phAGrPHwZA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.2616019Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A36Z&sr=b&sp=r&sig=FuDodQg4KjlBXFpigDVE93%2FWGQ%2BTqR9UYsTuPr7pQiM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:36.261677Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A36Z&se=2024-11-06T11%3A08%3A36Z&sr=c&sp=rl&sig=FzxS4F2h3NDK6FTypEg%2FgcNnpVF2%2FKql7Aqrnh%2FtKrc%3D","expireDateTime":"2024-11-06T11:08:36.2617541Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4898' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:22 GMT + - Wed, 06 Nov 2024 10:08:36 GMT mise-correlation-id: - - 7fb796b0-64cf-4c9a-96c8-7a24c830d3f4 + - ed47f19a-effa-4eb0-b8ab-e060cf64e94f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054522Z-17f5d849667qg6t9uvfp3m2p2w00000005t00000000018sz + - 20241106T100835Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001chhh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=wb7twk6LaprMfLCtb2bLuQtthtzKjVm6LpyC4a7llZc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.2055771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=ni8T%2FZmBhQ3Kgmft7C0EiJEojvy3e1xL3zsMuM6rGTY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:28.2052777Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=AWvsVb4YTAcLHFP0D9DuKVZbnGqxb7XwxtIrTefYKMo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.2056625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=pLFYXFgKQVdBKh4SNBRWFoQO8ayIlfgl%2BVLmOrp6nQg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.2057542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=QizCqc9RTvrUyc0zeWxVpo2u6DSLqFzpLVqHcDyXalE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.2058415Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A28Z&se=2024-10-16T06%3A45%3A28Z&sr=c&sp=rl&sig=xeuEVNnC3U6oLkXTxeiLKpOrgj6EDnBWwbRvFwUvxao%3D","expireDateTime":"2024-10-16T06:45:28.2059217Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=Smz19aVRSeZJJRYZmHdytuckuWW2ZZir%2F%2BgNGbYW5ig%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5727913Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=lwfsJT6jqKPqlr68Fc1O5FHS8qDd59kahJJ625jCBew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:41.5724899Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=RIly5%2BbTUwWGSnLNF7I8nXfq8Blrj3UYKdxuz%2FrBcfU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5729268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=t5GtUwnZqGo%2F2kizvStmKeU8RD9JSgOnBNfA2OZ7Vgc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5730629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A41Z&sr=b&sp=r&sig=EvInZ7m9TJhdC1aeHa4DFYH7w2k%2Bg5AmYGu1rLx6NqI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:41.5732022Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A41Z&se=2024-11-06T11%3A08%3A41Z&sr=c&sp=rl&sig=hfq3kLIgTFWUMI9xYnfLxqdEaaVsyywAGRX9KUDbIYY%3D","expireDateTime":"2024-11-06T11:08:41.5733564Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1558,17 +1433,17 @@ interactions: connection: - keep-alive content-length: - - '4894' + - '4896' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:28 GMT + - Wed, 06 Nov 2024 10:08:41 GMT mise-correlation-id: - - 54285c86-cf06-4775-98ef-1395eae228f4 + - a5b10fdf-4e17-4f52-a3c0-1c752b9464b2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054527Z-17f5d849667h7djshftd289dx000000007rg00000000erp8 + - 20241106T100841Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ck9q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1586,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=8YFIyV7V9mt2KrnTKEGxlLWbAVRFAAhmx2tcsi0ks2w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.5256795Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=VemODYMEWAfir3U%2FhMhSQklxDNc2T4KKakmCVgA731I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:33.5254227Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=JcUMfJn1rAt1BtdsVknRtQhA7jpSBb5xIvJoW709j70%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.5257333Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=TvDLNhul41rggDNpJwHwDyOAmf0ZwapeZn1nTJlVvn4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.5257829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A33Z&sr=b&sp=r&sig=8EgOx8jN6tc%2Bb1j%2Bf4IGj83Jqz8THuRn0yKnbbeneb8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:33.5258301Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A33Z&se=2024-10-16T06%3A45%3A33Z&sr=c&sp=rl&sig=rEizdkXcky%2BGEfvC%2Bo9%2FX0Lqu5wZF4Obq0X%2FQ3qBLos%3D","expireDateTime":"2024-10-16T06:45:33.5258762Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=c1SYOKVStjRPZVEedSviCzZcvFT6uAp6iiTMSSoLEXc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8852859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=tpupfHOw7jiPFutLVPHrVCxVkOrovaN5Iiq8cthF7qI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:46.8845742Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=Iv9W8tSeYpn0CvGMysbTO1%2Ffpq6AEKwmkxM25PSKop8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8855962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=epyLHDJMmx7EwUXMbvWMtKkz%2FxcNP%2BpvEY%2FQvxLvJoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8858878Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A46Z&sr=b&sp=r&sig=wNHRGrmfnLpkaTVDPZ1s4ItiRkAqQcYF5iOJmPM2QZY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:46.8861872Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A46Z&se=2024-11-06T11%3A08%3A46Z&sr=c&sp=rl&sig=ZRttbUlBFxTyb9I39iQhp6CxzVaYAfcwk1cnYCVdqFU%3D","expireDateTime":"2024-11-06T11:08:46.8863956Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1600,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4892' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:33 GMT + - Wed, 06 Nov 2024 10:08:47 GMT mise-correlation-id: - - ca396fd7-2aa3-40a3-be53-d423e57e45cc + - d7e66576-8b22-4920-a607-1dc5141b6050 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054533Z-17f5d8496676hfvje9tymmm4rw00000007900000000067yn + - 20241106T100846Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ckux x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A38Z&sr=b&sp=r&sig=jwQ3tHTnF11fyCLf55LgRBTP9RM9FgLLpSrj4tO4aU4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:38.8920023Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A38Z&sr=b&sp=r&sig=G6vapyDH%2BkNldIelkXXC4Ab9%2F7b3Wok42iQzy1QyP8U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:38.8917018Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A38Z&sr=b&sp=r&sig=kNK%2BQvp%2BtnJdFXo7eGK%2F533v5qR0bpJGdpb%2FXNZt4rM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:38.8921015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A38Z&sr=b&sp=r&sig=JreG3BzPkixC2hD5sCanv9Fdk9JvJlh1w%2BJ0YFK9w3o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:38.8922029Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A38Z&sr=b&sp=r&sig=376kC1%2BeOJsKc0gV4Cric586iG%2Fmsb8pEeCf6zrQtd8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:38.8922871Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A38Z&se=2024-10-16T06%3A45%3A38Z&sr=c&sp=rl&sig=vWJDJvk9VHUozDLemyRUg5236GHtCI1l4y%2FeZZumNzw%3D","expireDateTime":"2024-10-16T06:45:38.8923819Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=UGpPU3QBrZN8%2FWqEbq91Max0jT1nIJ6KnGfWjSCfpWo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.220043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=DkDjfKywy4zReVceVmQLHiBX4FcQQQr5%2Bk0v1dRd0iQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:52.219608Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=XT1oySwJThsvWj7sFFSGMJ3csph4LbrDq%2Bh7ruStpn0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.2201535Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=nkDoaVSSeBgt2yAylei%2FsqsEe%2FJbAPz9ODvngBvKTG0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.2202528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A52Z&sr=b&sp=r&sig=mpeclNpSaeBbG7nn0GMBIFkce9Th5f02z8JOHvXgJZA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:52.2203496Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A52Z&se=2024-11-06T11%3A08%3A52Z&sr=c&sp=rl&sig=bzHPWzbzvrYIXURzuJxQWoDwVVdILFKnSTpuG6SGS6Q%3D","expireDateTime":"2024-11-06T11:08:52.2204454Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1517,17 @@ interactions: connection: - keep-alive content-length: - - '4910' + - '4892' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:38 GMT + - Wed, 06 Nov 2024 10:08:52 GMT mise-correlation-id: - - 61320194-61f9-4cdf-83db-2c7fe11fc5d5 + - 96fa7585-8d78-4de3-bdda-e95cd495adb4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054538Z-17f5d849667xc28w1ckc6mbf4w00000007f0000000000ee6 + - 20241106T100852Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cmax x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=T9Qe4E1xJOsOCu3JO%2FiJ32H6F9koWu6V8MSVZz4aWIM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2141919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=FNAfpV9xD6gBDJGu1aojjyMyNAxSn7npa7L7YEPIJn8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:44.2139312Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=PTCbOUttAiptZBG6PgBWTGh6aNmXGieSXc1lLwMiePA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2142783Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=us3tFNjsIgq5iqmub%2Bm6ooSnDj7fEO7sRj%2FXbNZV8rI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2143614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=aX0a4IGDHTyYGw1Z%2BlFyYb8DQuPcpUNwKk48sRQKJ1c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.2144515Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A44Z&se=2024-10-16T06%3A45%3A44Z&sr=c&sp=rl&sig=7645%2Fwqjx46ydqH7yiHukZkESJq4W5%2FGpnP4V60hvaE%3D","expireDateTime":"2024-10-16T06:45:44.2145461Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=VPbLotqgaH2GUKpVj6pw0aGgr%2FsODclkoNrso4eYZxQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6401996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=IXBwo8DdZirTjfOHsj5B7zC6k9xgycYjgc4GklZ19PU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:57.6397682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=lcp8F%2FY%2FLRaNS9QSUiyo96sK352gbNxny6Se3oECjdQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6403816Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=riXwN5K7fOcqtiBLyJpizUYgvhH9ur1GkTLczf9995s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6405633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A57Z&sr=b&sp=r&sig=Qv9QQXiR0Nh06q01VBsNkJrj2uNInuBX%2B9YEMo%2FxErA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:57.6407542Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A57Z&se=2024-11-06T11%3A08%3A57Z&sr=c&sp=rl&sig=oJMj3c3ZUOPy58E3rJxEnWsZzx2%2FImJPHXstrN1VfkU%3D","expireDateTime":"2024-11-06T11:08:57.6409236Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4902' + - '4896' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:44 GMT + - Wed, 06 Nov 2024 10:08:57 GMT mise-correlation-id: - - a64846b5-8469-4bc8-a53f-2e3d35723c0d + - e2fc64af-bff5-4985-9432-588dab033337 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054544Z-17f5d849667mcvjp5w9fsbsaug00000007d000000000h567 + - 20241106T100857Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cmwq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=mq9Br7gOJRG4CAL4cchGt4%2FbJ64kWlpsDpQ6stOhcZY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.5599943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=KkWOD%2BPk1276RoITNR2Gfi8Mx7s1cZFwv5%2Bkzu4uzbM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:49.5595965Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=SfGPvk7o2%2FL49uJvv4SvFEQ4wD75SyXS3wEx4rEkagk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.5600844Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=laprmnUR7R%2B7ug%2Be%2FdWJ3QLfy4IcwZZEDMdkmuZErng%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.560174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A49Z&sr=b&sp=r&sig=lEfDJRpcvuKt80r6I0%2BTe3daqAK%2BRKaAczw2DRJ7oPc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:49.5602651Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A49Z&se=2024-10-16T06%3A45%3A49Z&sr=c&sp=rl&sig=bzLjpDN8H%2F4uSMEevgXTV9NZqfY0RhlV657F1qewLUg%3D","expireDateTime":"2024-10-16T06:45:49.5603514Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:01.594Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=B8K7rOqiwxVPZUZ4juTBSft7B90FUaEIl%2B%2FKXaxdftg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.969139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=EimfSZVwIRmUWPUv%2FbSGH6OdC6A0W8MvjqE6V4KaNz0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:02.9688614Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=ind2ZXUbIsld9%2BxX%2F9xRABr3ADHZKV%2FBXu8ll3u1Cus%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.9692343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=I89aSLieHYhO1ZvAk6WeXn8KC%2BvJPXC%2FS9BaU%2Bz7NE4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.969321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A02Z&sr=b&sp=r&sig=j%2FZshUvOq82X8bYKcBk3Uo4i0H3rcU4BI6GSiu%2BCbEI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:02.9694099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A02Z&se=2024-11-06T11%3A09%3A02Z&sr=c&sp=rl&sig=lkPKR4YYNJFmbTscd%2FhP8wFc5RVwG6aD6T8Qdiq4zjM%3D","expireDateTime":"2024-11-06T11:09:02.9694946Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:08:19.273Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1601,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:49 GMT + - Wed, 06 Nov 2024 10:09:03 GMT mise-correlation-id: - - 60971e45-08e2-45f4-8cdb-58780f9644bd + - e1bba415-f1a2-4269-b09f-80b40dca61a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054549Z-18489d46dccvln7t51fh7vb5kw00000007yg00000000merm + - 20241106T100902Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cnfa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=1Uce3Yh%2BoNkeDnl096oU6Kc0h41wB2W6rHvczN8zu8c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.9182686Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=A5q3O7otgWxDDcRkeA2qo5WSNei6ISMKOOeyYcAW%2Bbc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:54.9180787Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=SFSb0%2BcuJpc7T%2F4fgw9Xc1%2B%2FN3jeA9ugsav9snpN5B4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.9183348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=FT%2FshTqJKJHKa7a%2FHFZBdoixklCEhGUBLSCiYpZzjGU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.9183903Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A54Z&sr=b&sp=r&sig=qpQXOxthQhGE7MSSzeDJbxXvfdd8Z5%2FZnqcL%2FEiPaus%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:54.9184392Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A54Z&se=2024-10-16T06%3A45%3A54Z&sr=c&sp=rl&sig=JwsqPrZWZrHaKBmpFZpkHnpbheYhlcn5U4QZoWhM1U8%3D","expireDateTime":"2024-10-16T06:45:54.9184854Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:50.737Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=S%2Fs0ZVt9ELC%2FG96cs2ThsqjylgoQ2wXiC5ZwJ40i0Vs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2549177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=9cB6CsYgx3GV%2FAOgROAUCGxGT3qAH65EKLWpUaY8Y48%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:08.2545713Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=A66%2FEJujM7VDbo%2Fab%2BEq%2B3j3%2FppE8fv7V5UWv760rdE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2550532Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=0I%2FR%2FtHq85c8mOnev9PGzJP0B1XDXHMEZm2cWh6bLXQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2551884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A08Z&sr=b&sp=r&sig=sF7WokPGMbecNgWKwDlX2q6hU%2B9985DO9qJABCR05Do%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:08.2553248Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A08Z&se=2024-11-06T11%3A09%3A08Z&sr=c&sp=rl&sig=kYAUvUwPhsH%2BaIk2fSHXgYk7c%2FMu5EGgqYZxTW7BoHg%3D","expireDateTime":"2024-11-06T11:09:08.2554555Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:03.815Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1772,13 +1647,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:54 GMT + - Wed, 06 Nov 2024 10:09:08 GMT mise-correlation-id: - - 614a5fb7-20d5-4cd6-9841-2e5db0f21643 + - d910b0d1-ec72-4ab5-865e-4ab4bac9bd4e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054554Z-166cf497cd4q86sbftw3zaubkw00000007x000000000n86c + - 20241106T100908Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cp3t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=LzcLt%2B5mJBay37OYEOX2fm8%2FI8ta0yKDQW6g1XUrMxk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3148653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=yEdOm%2B5JwuStx472sDeOqXj%2B9SDdoP1EgIp%2BbqV1rL8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:00.314583Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=vFJGErfVUB%2BOio%2BI6UGEq1jVG%2FBtM9W9uF0xrW6fNn4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3149563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=YzXQn7Lim3X76YQJzOwonfwHK5knzKDFMKAbKXkp8NI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3150464Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=O9dWd0yDEHzKPSe0bHY7rflpSRtnPnzepAN6Hl9v9Go%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.3151258Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A00Z&se=2024-10-16T06%3A46%3A00Z&sr=c&sp=rl&sig=CY%2BZyAyehVkxXU6EFvcacivmSE3wCkyutWDe0XfM244%3D","expireDateTime":"2024-10-16T06:46:00.3152131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=jsdh4q%2FEE4UEwRTYgUvFYgvAmjB%2B6mliFBZ6trLZN60%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.5465259Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=lcAGIDCewldrsqma3b4I5Y4wjrMI8hfyzm7wXtj2Ntk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:13.5462097Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=RIgHGOMya7dudrvqE1vKpCv3HsvRS%2BNK0mBpXxQNkiw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.5466428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=iz%2FGs3wh5I7Pfz2mUtnlmqjGIkl0lIgDxTkyiU%2FV3Kw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.546767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A13Z&sr=b&sp=r&sig=TAZgSgFRuCObA%2BBu0xTOV5Zhwojb5%2Fo1X36A93v13sw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:13.5468741Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A13Z&se=2024-11-06T11%3A09%3A13Z&sr=c&sp=rl&sig=zEMkzlM8xAG3FCVj9wsGmqazK70toehBsWbLIxHswEY%3D","expireDateTime":"2024-11-06T11:09:13.5469922Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4894' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:00 GMT + - Wed, 06 Nov 2024 10:09:13 GMT mise-correlation-id: - - 12fba802-60b4-4611-a7a1-8e7e391846bd + - cfa20691-a51f-428e-a4dc-6a1482cd6c5b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054600Z-15484bdf45792m2k6spfmpcgcc00000002kg00000000fyqq + - 20241106T100913Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cprf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=Qz4NwB5%2BsuGlyTUdKnXHdvsUweqs1TNZp%2B230VNEcEU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.6488604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=IGK%2FN5x1Ij8UG4TczNn2QV4G6UViMZAaaBlmE5OYXSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:05.6483505Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=m%2BzIJeECz1bDuSQOVRoMLhbTc0dCHUDl8M4UO%2FPtVgA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.6489898Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=UTdyZpNl1bhttdFqRte99bWTRF7SktHQGspfi78PJN0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.6493228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A05Z&sr=b&sp=r&sig=I6AbpBDhuPv2nXOUbhpvs%2BT7RZRpgcqSKAn9U%2B%2BaJGk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:05.6495116Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A05Z&se=2024-10-16T06%3A46%3A05Z&sr=c&sp=rl&sig=qOAYhG4090wQvjVvQilHaKJIQd2sGyFcqi9aPldXrV4%3D","expireDateTime":"2024-10-16T06:46:05.6497048Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=M4QXBIVi9ea1wG3kzk4CJo5sBNQjB4pZH8VkgV%2FOCwo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.8451122Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=ITpYXvtUZwI4dISrBsm3Bj%2BgwOpB%2ByHtSN7TTnmkJoQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:18.8446813Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=KigmOhx1Z6%2FMhQZtWTcJYhfFZqnlAh9ygA01bCNRQvg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.8452393Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=7mRrcEu7nJnbTrkV9e0GX7qjV69Hd9HQ6TzY426Smhw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.845382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A18Z&sr=b&sp=r&sig=N%2BHTlJWI8PJlDHUgUlOf%2BSyDp1mlGUg1%2FO7eEdy%2BG6Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:18.8455262Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A18Z&se=2024-11-06T11%3A09%3A18Z&sr=c&sp=rl&sig=3ppqlvijhscxWEDYJPY9i2iKKgDGJLiVW60khlcU13A%3D","expireDateTime":"2024-11-06T11:09:18.8456661Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1852,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4896' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:05 GMT + - Wed, 06 Nov 2024 10:09:18 GMT mise-correlation-id: - - c338efb0-8da1-4096-b958-0ac18df89a30 + - e1d52ff4-082e-407d-97b9-a61a03666f74 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054605Z-18489d46dccg5n69wa1d0046r400000007e000000000b9c6 + - 20241106T100918Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cqb1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=d6MDVpbntTCvP%2BWcqP36EzH5PToYiXTp4612%2F49CaUI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.0291587Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=45P%2BHsVfAyB9YCUxYFv27NlK7YNxJ488f1eg7Dle6Xw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:11.0288873Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=V%2BCf3DpR4WduBOpAP0iHXAK75HUzs4CbWrf7OpmAP9g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.0292544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=MINaW283PN%2FMQ4JBgaONK4NR8roN5btH50GmXl9NzZk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.0293389Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=23Iu%2B9EEiOqyFC1DxNmTWjKm0%2B2SVolWKuSGB7y3bRk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.0294317Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A11Z&se=2024-10-16T06%3A46%3A11Z&sr=c&sp=rl&sig=wnTSk2IYgmYOtkCbLzpuuCWMvpg%2FyHPht8RYL3IbW4c%3D","expireDateTime":"2024-10-16T06:46:11.0295141Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=Rc8Wvzm60Pb0qihmmnmzzvPph0qfSO2wjDmATp%2B%2F4Tk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1384707Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=zmp5LKkA97Zi7FxOrLsuoF8AQ6wMg4TgRhHgeV1OXaQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:24.1380071Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=E0Gafj73F1t0wTZnjCR0Ql3OAsom26BrZSRZzNStjV0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1386452Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=lCp0iv%2FbSw7iMcBTFRO%2BO8qYQaqdrm8g7mE10Vlw%2Bc0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1388197Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A24Z&sr=b&sp=r&sig=Hkc3VOTEZsPDendwC5RKNKyAqyO6kRnUyN7EbuDZAWE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:24.1389957Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A24Z&se=2024-11-06T11%3A09%3A24Z&sr=c&sp=rl&sig=x1bAvks6vS9zbNAZXJqqUQcIFULACXwJC%2FBxegl6y78%3D","expireDateTime":"2024-11-06T11:09:24.1391672Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1894,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:11 GMT + - Wed, 06 Nov 2024 10:09:24 GMT mise-correlation-id: - - 088c475f-475a-4c85-93c5-24dc27679553 + - f7a7ac01-efdf-4eff-b15e-8a9c6515643c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054610Z-166cf497cd4r6hmp97992txd7w00000007xg00000000bax6 + - 20241106T100924Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001crw0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1922,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=DgWL0m%2BzshKz5pPGmw9hBJgy38gS9Rq1cbynbNDR8w0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.4155143Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=qixm%2FFLdOLES3NaHG5hjK4H4r5knGZdOTgy4oZb06k0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:16.415221Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=Hj6ZkPLxvOXTiCPOFe56xhmz5DEc5eIy1NRoQ0bOwtQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.4156012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=y5LHkIf2lKobyGVbQbyn%2FRVwt7uoK7R082Mpl7GMxxo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.4156852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=rhdXxZRqiCgm9ERqjRDF%2BPCAK3Jump9CVAmMfOHBTLk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.415767Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A16Z&se=2024-10-16T06%3A46%3A16Z&sr=c&sp=rl&sig=%2BL69WDFLKdDjlkAmcM%2BfVYNOezM29xq%2BOQIkRkIhzpw%3D","expireDateTime":"2024-10-16T06:46:16.4158484Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=zlmkZ1wvA8F00NGvE%2FGZSRxsMqnfI%2BaKhZJ2JAyfkVk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.624687Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=febxIzeOs%2B%2FAecGwW70VvhexlNh%2BtaYnmqPs1WX0Tss%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:29.6242454Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=248epdMdZ3USnUqa0S9AfJRXSFu8r0jS1iXth2al2uQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.6248601Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=tfBNCcW89%2BZGDvF1by5%2BR3hk2YiVN%2F%2FsxKB8uaq1Hck%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.6249619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A29Z&sr=b&sp=r&sig=VVesaXxca7CT2QjPRRenz91F4x8OGz5vTlnDBOWiiao%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:29.6251246Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A29Z&se=2024-11-06T11%3A09%3A29Z&sr=c&sp=rl&sig=r4SH2Z4mPWM7YgScyIUnxeVrq24rVjiD%2FOWGQ3MnGlE%3D","expireDateTime":"2024-11-06T11:09:29.6252759Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1936,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4899' + - '4900' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:16 GMT + - Wed, 06 Nov 2024 10:09:29 GMT mise-correlation-id: - - 3cf8473d-1b32-4373-9ad9-0a0afd38c5e0 + - c5728100-1ed3-49d4-a0d4-68dc8b60afed strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054616Z-18489d46dcc5trkwxb4ya4w12000000007q000000000m8b2 + - 20241106T100929Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001ct50 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=i2ZGtWrZ8WBI2Y9yLDtmX1d6PB6AKvQnfNdMmWxcnCo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.6562214Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=fHfb99NPprRhImXsXXtNounEQ1Alk0vV9jt5E3FeEFc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:21.6558626Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=s7MzLN34XC7d%2BQCw14roPYRiHNOb6tLlyezwiO43JpA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.6564284Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=W4AFNmzcX4uzjPqUytBmi%2Fb1isX9TLM1wz6m8fEgUvM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.6566151Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A21Z&sr=b&sp=r&sig=MzdbEoDtM7oU02EipMeb8WRAkmBKudpkGDU6l6yF6M8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:21.6567755Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A21Z&se=2024-10-16T06%3A46%3A21Z&sr=c&sp=rl&sig=c7Ck%2FMVOsOI9uutaAIMgpf2BctufgBmdBc4EUjlkexs%3D","expireDateTime":"2024-10-16T06:46:21.6569428Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=UX3ZuuArrkq%2FPMLwzUVKA3IvLI2XZkujSWmQ4nc32nI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0094153Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=i%2FpF0nIWfsxNZ54xFDmSr3pys2ogCc5VLrjlyls4SzQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:35.0088686Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=O3CYd9bJI6UxTM5Zf%2B7stKjw8pCvAd36YjGluoUXsaY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0096369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=KRFA3yTALWPPtR%2BpL7PDcCnFm48mqB085mhhhpKztdc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0097734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A35Z&sr=b&sp=r&sig=szShAJuE0LsEuK53zLDQqbu6%2BK6G8t1lQ0pVSirJQ6s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:35.0099028Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A35Z&se=2024-11-06T11%3A09%3A35Z&sr=c&sp=rl&sig=wOcfiUw2ixY6mYIImDuzorKudqaFIrfobJxRexhOfxg%3D","expireDateTime":"2024-11-06T11:09:35.0100009Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4893' + - '4891' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:21 GMT + - Wed, 06 Nov 2024 10:09:35 GMT mise-correlation-id: - - 505b0c67-a10a-4b0e-83cc-67ac268eeaa6 + - 95860519-d2fe-4249-95db-ce842d0e802a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054621Z-166cf497cd47w9bdc501r87meg00000004h0000000004bga + - 20241106T100934Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001curx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=kwU7kFcOMSiAZOciK%2B54K1JplxVRdkH0LLsP9f7fIi4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.0191945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=Hw%2Fhr55GMOvZAUBZEGEV5DsyI5qoGlP4guQOXZ6VkGE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:27.0188922Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=0QHgfC5yTgadAxAjMImuiaKE6ZyLq9YTZ%2BwLTKWzU08%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.0192918Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=NLiSPjztp6B5aGNJpYjILM7SFTxtoQtC2HPyO5RCu8o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.0193821Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=TomLTcjhvdaMfwax3VfWeehJzz3XLnYCTVUDAfywdWk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.0194622Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A27Z&se=2024-10-16T06%3A46%3A27Z&sr=c&sp=rl&sig=71XS4rzi%2FW%2BHE2gIEdc7Vx1dNt7X8zw9O68gJ7xqqOo%3D","expireDateTime":"2024-10-16T06:46:27.0195551Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=ngzpa%2Fv5wsIPIgU0teYN%2FxXtpuPJycLa4mEXrF1QVyY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.7343135Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=kueLj9%2FOAoIvTwDHJBRlwmLGI2GRlNdjxmkt7We2k20%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:40.7340118Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=7vlIWxkMUmP6iyqRnQhyUDAdOg%2F5OKpNHCZ69hnT8kU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.7344413Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=52S%2Fxt2zEgELJZUsa6dRyV2lUkgLNlbXT88YVvZhtqY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.734567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=MhUQTx%2FlYH0m3MAO3fr94zSdhcclyypW4UrFFOKfqwU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.7346926Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A08Z&ske=2024-11-06T17%3A08%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A40Z&se=2024-11-06T11%3A09%3A40Z&sr=c&sp=rl&sig=QjRCik%2B3rVkAnc4oCReD1Rns%2FzceT1kRse0hkCBKUuw%3D","expireDateTime":"2024-11-06T11:09:40.7348167Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4897' + - '4896' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:27 GMT + - Wed, 06 Nov 2024 10:09:40 GMT mise-correlation-id: - - 7c588e95-e014-4aaf-b6ec-9c387fe3c1d2 + - 29dbd31e-c0c4-4083-b5c6-869ace076218 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054626Z-18489d46dccgwx6cyqev009zy000000007q000000000gvbf + - 20241106T100940Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cw5e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=nsWz7HYnJUwI3SjoKxVEML0RUy2FfvtmsKv559DxztE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.3967078Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=rVyaKMab6LBhbKVNQaADAjgflUDFTFCMEJmS1fQNi2M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:32.3964547Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=y%2F8eM8go3%2FfrrLBHH0DqEKiuiSXTE3Nu1v5JeaA6h10%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.3967826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=0PyS%2FqrfZIvlU28bKyxT9xP01foWHri2AP%2F6sST4ha4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.3968529Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=EYloKIsMtBNcadLCHAiDh4ZaJlR6gme55Uy%2Fwu5ECzI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.3969159Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A32Z&se=2024-10-16T06%3A46%3A32Z&sr=c&sp=rl&sig=sokhzL7tN5LvoaxYSfZTzRFuLg%2BeR5vlkBFfUkfdrVs%3D","expireDateTime":"2024-10-16T06:46:32.396976Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=GoVNlqv4WGNPkEvQHaQxf2p8dXNWAEeOIz5VjuKofqg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2084838Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=tY9wdG7zB%2FIEnMos1P2r56F7%2FPgUdCr2QwjAB3DaLGc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:46.2078994Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=bwiI6vEdhhqXX24yfysY52fKLSFS9A4in0Bz3P1Qc1o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2087763Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=RcdlWR%2FWj8hviFMLL8VHv2GJmGUKLB4Ox2%2FkRNVAwKs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2091043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A46Z&sr=b&sp=r&sig=G3s7sgWuGVaO83pxMKoC28MWA%2F6k7esK%2Fg35h6ErMw0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:46.2093977Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A46Z&se=2024-11-06T11%3A09%3A46Z&sr=c&sp=rl&sig=%2FEs0kH9w582m6ZYQ4wTyDVpIYYuSVD4H205Z1HkyfAA%3D","expireDateTime":"2024-11-06T11:09:46.209678Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4898' + - '4894' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:32 GMT + - Wed, 06 Nov 2024 10:09:46 GMT mise-correlation-id: - - a7ebd191-4569-4e1d-b7c0-367e8d132108 + - 1bd99903-82f5-4c65-b63c-3b9b8c436b87 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054632Z-166cf497cd4ljj2qr0tamq52u000000007sg00000000evag + - 20241106T100946Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cwnz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=160LHv03k%2BXymabRBwWOzbcfmJWzWJS4j3afvPK3OzI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.7718563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=YRGBE3uRLTfLPU916ZEcxhk06cj4eU7qiKq72Wqv5hs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:37.7715927Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=bRfPyxd0Qo2m6R9dh7pi3dqRN0lsbzaBC6NSIqhWuDc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.771942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=KOwpnky2EOoCKM%2BW2hglPyCI5t6dlpJO8fN%2FxMxmWVg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.7720241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A37Z&sr=b&sp=r&sig=cy0sffiPSu7qHasci7Hximp%2Fz1OMjXH5KC0uP2Vpw1E%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:37.7721092Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A37Z&se=2024-10-16T06%3A46%3A37Z&sr=c&sp=rl&sig=EjKEaK4x%2B6WRqjOad0jBCxLSlbr3EiEtQP4ftSHuoXI%3D","expireDateTime":"2024-10-16T06:46:37.7722015Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=OFO6CArlQOKUJiiTZms%2Bv%2B2P3SBTChOPpGP2xJRyglE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5154896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=x366suzBeBWfbGCPRNfsv4XeRbTQqsY1VwC%2FtxqI08M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:51.5152776Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=ox%2Fr4sPu4FFjX9NqBp30jFcRtMrB2okBERWrtrvZg98%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5155893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=RYHcI%2BvEpy1lh0r9qXJHC%2FCznrB09ZtKZfIeNzWv6TU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5156821Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A51Z&sr=b&sp=r&sig=jRqHMkqi3vx%2FHRrqKIQEa%2BHNspH%2B57DhenGo5aVDta4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:51.5157723Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A51Z&se=2024-11-06T11%3A09%3A51Z&sr=c&sp=rl&sig=if%2FVfU00pf5kkE8ge1v6TECjtGtQ91RBPMCDRChFaog%3D","expireDateTime":"2024-11-06T11:09:51.5158604Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +1979,17 @@ interactions: connection: - keep-alive content-length: - - '4896' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:37 GMT + - Wed, 06 Nov 2024 10:09:51 GMT mise-correlation-id: - - fe2c27be-c3d9-48c0-9935-be714bb57b2d + - b83b5dda-d828-4089-befd-9762418313a9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054637Z-166cf497cd4r6hmp97992txd7w00000007y000000000awkc + - 20241106T100951Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cxm1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=wameHDDxzTumyHhIKrg2xy2ntNRvJeEpie4nUPPi2Co%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1350862Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=pFX9VSO1Vw64sCjj0KkDs4V7C3jafam9gjNVG7XSdlI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:43.1348687Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=3jRf3ir0TAdrGVQgblxHPyaoAZ9%2BpdzfBWayowgtHVA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1351915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=2DOacGwBXxMO%2FlWSj%2FdooWX3%2F%2FKDyhSxt9NKX2mQdqk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1352842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=G5vwuwV%2BMECI78UEHYSxCXovEHUEBgrqYfoI%2B9mpHF0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.1353746Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A43Z&se=2024-10-16T06%3A46%3A43Z&sr=c&sp=rl&sig=RSUr4nVuvZCdwugCS1nC44G99uwxrwCw7a14KOrbAVQ%3D","expireDateTime":"2024-10-16T06:46:43.1354636Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=yL8ReqwPTDLzeAQ0DkkvxM91AO6JEnqsjVJZ8lwsdeI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8139008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=tOSfYIiTEX2wDkBOMeEisooXOJm0nHI0RWpsu8edvO0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:56.8134266Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=F8jAhijCqxPxuoeKqknL%2BvCaXMQSjskGqzoQuBreWNk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8141228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=xQo3MzyvBM9gU9xYRMMYwyxlXtn%2Fsa6gRkzpu8v6JdQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8143174Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=8v%2B32v%2FPveFC%2FqUKuwl9jUABX2N7JzQbKLp0x6brQ3I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.8145103Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A56Z&se=2024-11-06T11%3A09%3A56Z&sr=c&sp=rl&sig=MuE2UqShgvXrRjBLPgiwBRZckbKU1aBenD%2BCeCu2Xzo%3D","expireDateTime":"2024-11-06T11:09:56.8147126Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2146,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:43 GMT + - Wed, 06 Nov 2024 10:09:56 GMT mise-correlation-id: - - 91bfc5ea-c1eb-4bb3-96b1-fe84048a4199 + - 49d7decd-dd7d-486a-82cc-2ba622eff4d6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054642Z-166cf497cd4g2mz5b71exmq12g00000002qg000000001mgs + - 20241106T100956Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cy95 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=7NVRsKKpZOyvhRN9WxV%2B0miNDtbvtNqvDkKHiLU9E2U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0542998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=AXA7nN6gqkzTaz1IMtdu7jBi647w4Mya3kJUAC1C5lE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:49.0540325Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=RLptG5LK5i4%2FtF62pNHT%2FlQlcljIO7h1eO%2B%2Bwg8vNzo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0543907Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=0%2FcoCfnVZAbROOAkwLiqsZoovFaFIdPhmBjJ2vCvWj4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0544755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=9mttORvW0Its1JTyK4cduEl%2FmWYIBkLQ%2Fg02itpygkw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0545591Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A49Z&se=2024-10-16T06%3A46%3A49Z&sr=c&sp=rl&sig=vIi0oRS%2FU6kFMiWU%2FaGZFuos7Uq%2BxXC1pIkIP2JfYTE%3D","expireDateTime":"2024-10-16T06:46:49.0546472Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=zqH%2F%2FdNxmY6pYQKcuaw3rRVaRDtPHkMWqJQyOuhXSNw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3439991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=cQRSbenVKkarv3%2B9e%2B7aQIKcvp3Q7Lm4FMsYlkkmXjM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:02.3437651Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=U3g5P8nBPPzTpkJ09I4xILHw9qQ8Jhr5KeTVHQeYN6k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3440614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=ojqhxBEbR46e7rTDEGa4v4uxuQ84uYlwq5UQuERQECI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3441271Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A02Z&sr=b&sp=r&sig=qraGodxKIFHTDywQfkJGQ5qjDi1RDGKe3MDH2yA37Dk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:02.3441973Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A02Z&se=2024-11-06T11%3A10%3A02Z&sr=c&sp=rl&sig=eHKNhwSPW1dTUOfHDb1xa4p65LDOzoBu9LySC%2Fp8mLk%3D","expireDateTime":"2024-11-06T11:10:02.3442634Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4891' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:49 GMT + - Wed, 06 Nov 2024 10:10:02 GMT mise-correlation-id: - - 893f499f-a4be-4fab-ae05-f3fb0b992b58 + - 60d2d905-9f5d-49ec-9840-499cd6eec064 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054648Z-18489d46dccggs4rh24eyxmvec00000007v0000000008h2z + - 20241106T101002Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001cyyw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=BEQVSV4oU9%2BOLwUbTUC2WHphBfZZmRQsFNLCDrYhZqk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.3532207Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=j60Iv6vivF4yOgATgzGMO7y9%2FSASwe1BMFoP1kNKc2U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:54.3529802Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=yVdSDJvg9cCQr%2BlwYX%2BV5i31pPXyCjWuPLONriw7Wbg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.3532934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=8OejyIC8DL7xklendYXERNB%2FP%2BUXpiyuZSrJL8fU7Ok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.3533542Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=yil9Vwt0PfmJJ4%2FStOEn%2FFuIsy%2F8FjJwkpXwBKJ%2Fkus%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.353426Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A54Z&se=2024-10-16T06%3A46%3A54Z&sr=c&sp=rl&sig=H7yRPdD1vRitwi%2Fvk9Ix28ePD8eXiN2ofofJhYeTxTY%3D","expireDateTime":"2024-10-16T06:46:54.353486Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=DfdWlYTRma0mxr8ygGMemNOW9fKj6zRqD4J3KExGwQ0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1518405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=LGcicNmoz56qxzQ%2B3ofnQqia%2F6PtKWxpfrvM8FBH3o0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:08.1515541Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=wFQ8QVJVqT%2FCZedtERR4nv2aDd7JzLicaydUEvYmVdo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1519374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=MU9qK7GT3g0w%2BaPnBTGoNdES3lVPc6ULL1yO%2FXF9E50%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1520291Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A08Z&sr=b&sp=r&sig=UW1%2ByqbkUmtAS879rwB3QvJvuVJYIVy6uj4pDUgiycA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:08.1521285Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A08Z&se=2024-11-06T11%3A10%3A08Z&sr=c&sp=rl&sig=XItBeYsYE%2BqJbsu%2B%2FeUAjHR2hXJfov7LyG5G4y6U434%3D","expireDateTime":"2024-11-06T11:10:08.1522222Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2230,17 +2105,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:54 GMT + - Wed, 06 Nov 2024 10:10:08 GMT mise-correlation-id: - - 803d87c4-1cbb-489e-891b-62e559534950 + - 25a69cfa-ce0f-4d70-8fd9-fdceb35b9a5f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054654Z-165bfd566cfvnfldckvfavskxn00000007ag00000000buac + - 20241106T101008Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d03d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=6D974NEcGWMDtKZkou01mc8FWn6pzIqtbz2ZZG9YDBg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.6696288Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=uYKySY0UC0SZJCTxFeYOyir%2FOZRTyzwv95kT7es4uno%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:59.6694027Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=QBk%2BNNLtQdgR9pWP3KLvxiSGPBjdqrwpDNssYBEy1%2B0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.6696935Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=ANgfg7P6J46rfMXLH%2FVYThnCIoIyFPmXKG2C8A6604I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.6697567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=GKM3eDPgBriUf9oIoJJ8IOiYRdce4gnLabss5a5GKZs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.6698193Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A59Z&se=2024-10-16T06%3A46%3A59Z&sr=c&sp=rl&sig=HYJUlSiWD30pq%2BkNH21DzS11B9SBz3EZWSB7VJLYje4%3D","expireDateTime":"2024-10-16T06:46:59.6698804Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=HUmC66LaAIrxbwk3YF%2B7HBcFw6pZAPrseaF3wljl7rQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.53155Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=d8nmpoKvDHfR43weCKsdn1y1wH97Nre9DZVFkIs%2FVsI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:13.5310953Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=vfPzcA637atiQZt4TrGu%2B5m%2FVzFm4oZ1D3%2BL4GH6A1g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.5316866Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=uGZUHYAnPpxfK7LEEQb%2BISK799LKCpRQSTKm7Yc5ZgQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.5318321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A13Z&sr=b&sp=r&sig=xxUPTJlwlQxfVi%2FB0VEgpJ5RKk9sg1KVjG%2BuF6J9JVo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:13.5319691Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A13Z&se=2024-11-06T11%3A10%3A13Z&sr=c&sp=rl&sig=MYL8KRJBY30vWNI4uMpjkrPekm00QV8o46Cl9laNsj0%3D","expireDateTime":"2024-11-06T11:10:13.53211Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2272,17 +2147,17 @@ interactions: connection: - keep-alive content-length: - - '4897' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:59 GMT + - Wed, 06 Nov 2024 10:10:13 GMT mise-correlation-id: - - 0fb58e58-fee0-4c85-8a2b-5190435550c3 + - 2e544dd0-3ea4-4f81-9a1c-26e80f33185b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054659Z-17f5d849667pkml2n4g8rmfnnc00000005wg000000007qr0 + - 20241106T101013Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d0q4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=mpn7mcUWcyUKdVdm4qbTbw6MJKBjsPEnPXNgmZm%2Bm14%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.0037898Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=BNSqr5pv%2FYxGT%2BRxT7MJN%2B9TcsuxAj4AWjeZpHTHqpY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:05.0034901Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=ZU4fwkZcpc%2FVCUsUDjH%2B1r5JlJGrOD3uRJ9kI%2FDAopU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.0038783Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=Vcm1QQWy7Dwz7viNDeMHQdj0RXEMoRrpRA1reAFczPo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.0039759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=4qnD7WalK470x5vrb5fXZ1aVjvs3bOxAmb9BGvLIXAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.0040597Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A05Z&se=2024-10-16T06%3A47%3A05Z&sr=c&sp=rl&sig=fuu979Qzf2khYHP5MdNh0iBww%2F3qyhaShRP0aXDLbCk%3D","expireDateTime":"2024-10-16T06:47:05.0041505Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=kfVe6qxmwEQMXpisBnoInT91MQZHjnKiIWkdsv%2BvzZw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9559306Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=6uMmhQraWgFkYsTt6S5IcB5VNxsJ7DxDxre1qEN8pFw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:18.9554592Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=mnjMg0MKxn7MKdy0PsCN5bfrWaq0ebKgHR673Tt3ag8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9561034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=OLN0KCnfN790a5e%2Fe8dc60LsyNjJVQHXYmasqI3E5%2FY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9562794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A18Z&sr=b&sp=r&sig=xhv6e5BtfcZNv9qj3jeZWxICig3tQaTAioWIm70ON78%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:18.9564511Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A18Z&se=2024-11-06T11%3A10%3A18Z&sr=c&sp=rl&sig=xv26QTFZnk9rQwtZebw29AcLsGUe%2BjkFsmrhxAF9PiM%3D","expireDateTime":"2024-11-06T11:10:18.9566465Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2314,17 +2189,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4889' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:05 GMT + - Wed, 06 Nov 2024 10:10:19 GMT mise-correlation-id: - - 4ad9735d-3c36-4fee-8572-fc2aeb12ba08 + - 9bf6ca8d-b86f-4ba4-ba2b-2cfff7761591 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054704Z-17f5d849667xc28w1ckc6mbf4w00000007d0000000004aec + - 20241106T101018Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d20m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2342,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=A%2F20wYt1VGS%2FbjdskhG9cbA6bZCKPHdZ%2FWg0qBOCUV8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.3504877Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=NhGPHngZ3Lk%2BV9joQry%2BKT%2F6%2FX25%2FVamk4oI9vDxXmI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:10.35021Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=e9CwUuNqHj3fha5cLHOdHAN3d1F7lqiNQnAxDz1U2TM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.3505757Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=IPojgVDJwWHg3C6J%2FtH7Hr8Fq6TTsD%2FbCGF9tu%2FhqoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.3506343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=yil91Qh6IN52EmtUwFG38H3bBrB35hFHP1z%2BTYdLMpc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.3506835Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A10Z&se=2024-10-16T06%3A47%3A10Z&sr=c&sp=rl&sig=FTRF3HsyTinzcjghfhNSY8Ks82rQmCfIHsN9wtBrmr4%3D","expireDateTime":"2024-10-16T06:47:10.3507304Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=xQZ1vVvpZea%2Fkc8pJgkWhiNsPv7gA8tI1etlmtQGjzU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.425702Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=IBYO4UtWMmal8VtRlig02yzVFtLYmY%2FUMTObiQcIqSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:24.4252257Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=taRJtAiupF%2BSvc%2B8rWixOiwGw1qpW4HVmTHWV5jxqlU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.4258802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=rC3ZJ%2BmbekqMqYuQz283%2FQIaHUDgQFs%2BEvNNoBCmF5M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.4260701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A24Z&sr=b&sp=r&sig=TmBhdTTsrXj15YW%2FrJrsgtoMqgJ%2FhmtZ9cTO60K5%2Bmc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:24.4262374Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A24Z&se=2024-11-06T11%3A10%3A24Z&sr=c&sp=rl&sig=2zV8jeUNHx4IxbYnGUrXF20Gowd4DJxbKL0nfJ8XAQE%3D","expireDateTime":"2024-11-06T11:10:24.426405Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2356,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:10 GMT + - Wed, 06 Nov 2024 10:10:24 GMT mise-correlation-id: - - 4b137be7-f537-4f98-8a23-4d54cbda721a + - caa4084b-25de-486c-9450-2516ac906686 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054710Z-18489d46dcc2nx5gu4q8t6hd2g00000007x00000000020yy + - 20241106T101024Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d35z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=WBvNkXa9%2FdxR1K2zfqMnnvKBt9LbRZ3eyyMHU0H4cYA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.6611332Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=AgVPNId0YzznSz0fKfohTp%2FaCaTugCN7b%2FddLCfcm8Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:15.660906Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=IMNg9ctkW%2BfIUdqpgWjLq1EG1b2f24D0GV%2Fk6iQAdoo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.6611989Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=KoBG5QwequN8%2F9Vo6JWXaZWid2DvPguw0uePHOq9bII%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.6612615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=GjR5oXdFwdJrSSGkj%2Fw8DeBHWbnPlfDV7lx8SxbApc0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.661324Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A15Z&se=2024-10-16T06%3A47%3A15Z&sr=c&sp=rl&sig=w4va7QNP95YJdXxbV9LNte2F07oF4OV7upuomlO%2BS5Q%3D","expireDateTime":"2024-10-16T06:47:15.6613837Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=MVfxk9ZKfQKRQq240XB7ttOrPRqTXzfu0WpVGyWYi04%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8826493Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=p76QVOg6nt7%2Be2DK6K40R%2FGf3oS2jajELbhpnUoEJwc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:29.8823634Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=NtThZDsgtlCodqNyEtB%2BRgRGCCMJLWy8P4rCLC%2FiwlY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8827505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=L5Ce1w29BrF7luz6utjnFoYMzERAZmsxuXfVR%2BEzhKA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8828731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A29Z&sr=b&sp=r&sig=WyXJ2K%2FiUV6EGB7cS9UvbKzkHkxGjAxPM2fED0g504o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:29.8830289Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A29Z&se=2024-11-06T11%3A10%3A29Z&sr=c&sp=rl&sig=DAf7JqAu34tRJH6XfO%2Bs7opXVOYPfaChfTcuvM7IWoI%3D","expireDateTime":"2024-11-06T11:10:29.8832079Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2398,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4895' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:15 GMT + - Wed, 06 Nov 2024 10:10:29 GMT mise-correlation-id: - - 59617dbc-a681-4d3e-8f54-fa07c930c512 + - f889d42d-6895-4d71-ae31-d46ec5a91cf8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054715Z-166cf497cd4qwz4p7wbrzn166c00000002e00000000042my + - 20241106T101029Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d41g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=lBwGqpxnAxlG7A1P3GZNxem15AYb50wp%2BQpPZY%2BTNKM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.0700752Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=RQoQuaKSRnb7A5rx5afU6C7XWyoGUe3xL7g9DJc4adM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:21.0695395Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=zlfL0NLMX7i8qrlGH732JDHc%2BfmzKL36JT9a29W7vTY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.0702013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=w1NVTStrLQ2R1kbCMVQhUMD90wt%2F%2F95MY9gLacsux6Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.0703043Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=ghQHvABp7%2B5oOxOZmY50nH8VYbkCdiX%2BuuGvkVHYjJE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.0704005Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A01Z&ske=2024-10-17T14%3A45%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A21Z&se=2024-10-16T06%3A47%3A21Z&sr=c&sp=rl&sig=f%2FCfvxGsxZIMSD081YVhImykHjEqAg6SzxOGq8SVvIM%3D","expireDateTime":"2024-10-16T06:47:21.0705059Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=dKbPI3dB%2FO%2F6OAZB3UfZrzybn8gPiYt%2Fepdpexeo2y0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2882898Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=wJ0WYhqMx3UVESnl6UrpT7bBMxVvZUrxq%2B8SN2sEpiw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:35.2877394Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=l7oZXrWb88U9rvto8xm4SyB2Piz5pMo0K6%2BdwklZ7j0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2885121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=sXwYScjXcCwwhHFTZpWfsSvcx%2FzKFJ94StbD1cH9EVY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2887173Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A35Z&sr=b&sp=r&sig=BCdJvuF2TJU7EqIuLE4OFzteZsslm4u0uZF%2BvjPKzvE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:35.2889382Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A11Z&ske=2024-11-06T17%3A07%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A35Z&se=2024-11-06T11%3A10%3A35Z&sr=c&sp=rl&sig=6bpGZ1qojNAxsbMCkLIQBDXxLFzVribEowE3e0x9sHY%3D","expireDateTime":"2024-11-06T11:10:35.2891538Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4895' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:21 GMT + - Wed, 06 Nov 2024 10:10:35 GMT mise-correlation-id: - - 4873ed73-7f44-4cdf-a5e3-89324539e6e7 + - 4ee32d12-916c-433f-b044-9c38889f9d84 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054720Z-15484bdf4575xp6m65z1ff0ptn000000025g00000000hqku + - 20241106T101035Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d50m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=mZbIo2%2B0fBGi2BT6fE5Pf6zSnM08zl6MJzBmcCGFT7w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.4259235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=1spjl68VykcEOVDvx%2FYsvM6TugVVsEkJfkqEJZjTi7U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:26.4255513Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=wp%2Fh3UC6J%2Bn87V2BfMjzxm4krMXjPJXdWp3w6vZEybA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.426022Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=KoqCpEL%2FNx%2BkGGTOQxkizx%2FOSUqOBBAVp0PCWPFlzPs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.4261133Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=SFF9nv3715XM9OKJwiPO%2B%2Bc4ZPVA1%2B2w%2F0%2F%2FsdxwSHo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.4262025Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A26Z&se=2024-10-16T06%3A47%3A26Z&sr=c&sp=rl&sig=3MSNEtf62mukqlsL8TRcUOoZ8KLgQKyWrjssQ9EOi5g%3D","expireDateTime":"2024-10-16T06:47:26.4262908Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=joTw3ahZhBG6ho8%2Bng8C6DA1okih2fxGm1U1FjmyBZ0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.6328482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=JPDeVse6DJ7JdSmAzSg0YL5t0NAH7POJK2Hm0V00GP0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:40.6325631Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=Ghs64EolwXBDjLNEgjLY48dccI%2FrrZhasu0gE1B1xno%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.6329481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=ERkp62THCMb%2BEluQ6rKgDrDm%2Br9tJk4RX9h1KnLzWUU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.633047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A40Z&sr=b&sp=r&sig=RQpyxedki%2BzVgST8TAMq6wIz9aDvAtIvdc1VhaKDnLo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:40.6331442Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A40Z&se=2024-11-06T11%3A10%3A40Z&sr=c&sp=rl&sig=%2BuSvPcURIFiuv0sInAFaHPb1qWEQPlaRrMIrtDrJ1Rg%3D","expireDateTime":"2024-11-06T11:10:40.6332415Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4912' + - '4892' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:26 GMT + - Wed, 06 Nov 2024 10:10:40 GMT mise-correlation-id: - - 3a80e2c3-7db8-4d5d-904d-b9490d54787f + - 4b5210ae-9d86-4818-8fd6-97260543e495 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054726Z-18489d46dccj85r8e2f8g29m2800000007y000000000havg + - 20241106T101040Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d64h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=eR7IOFReIQaGMX4rtWdN8a3Z6MfawW8QN%2FZ6EWekHAo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9090683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=BqmmOJMHtwWM5DsWXhI7tWWf17B2qZrbKWjyc0TRC6U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:31.908804Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=4WEz5oIlhMAQ%2BIbaIWYNd6gHbae3u1m%2Fa0NAdlOg%2BHE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9091541Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=7UOnt%2Bub6L8wTpgbm%2BbY27AgZNEzxedQUfNKIZ0uMTY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9092553Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=u5UjW6QI1LM%2F3osJh9APFb1pxg7MBvS%2FETlNapmqk04%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.9095003Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A31Z&se=2024-10-16T06%3A47%3A31Z&sr=c&sp=rl&sig=Z6OEg%2FMIHKSUr7v1kWzVJLVffYjbsMHutVtEZUrltaM%3D","expireDateTime":"2024-10-16T06:47:31.9096142Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=DOJikmcEzCL2ntmlJ%2FPCFEVec2lTtyLR4y8R%2FBtzNCc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.986802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=tRcbx3%2Bo9VX8a9E%2BRjGDhpyoj7NUOCzhac0rKUJ6mbQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:45.9864232Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=G9AqVMCrLUkVdFDjGr11M9KoQHUnDo%2FXy8NyYwdBy1Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.9869417Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=3uz%2FvNC5yzS9YPbkeRzwStzgk9MKQ6WsSSMhGuzkSLo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.9870791Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A45Z&sr=b&sp=r&sig=p7xCvaUYiajemX%2Bxq0zBp9wWC9lL%2BggDQojnjqAnv1Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:45.9872156Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A12Z&ske=2024-11-07T02%3A07%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A45Z&se=2024-11-06T11%3A10%3A45Z&sr=c&sp=rl&sig=rbPMKsxFVybcKKvKVbKFVY%2FecxK0sk64tgLGdvM4j3c%3D","expireDateTime":"2024-11-06T11:10:45.9873496Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4898' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:31 GMT + - Wed, 06 Nov 2024 10:10:46 GMT mise-correlation-id: - - 11f94e41-a491-4fe0-8266-aba96aa99d0a + - d9c015ff-609b-404b-94bb-689251e0a53e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054731Z-166cf497cd4xh8zq4d721105qg00000007vg00000000bxu5 + - 20241106T101045Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d70w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=KNiUa46itbABACEVRE%2BGUx5krr2bBs20jDAK4XjFzto%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2671417Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=5Hfphr1NXmy3Ka%2FGbHb42YefMREqgwWvgfihr4qXCdk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:37.266584Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=if%2FENEd8HpeXG%2FOzkBPDBdrnEKOVpKBQBQk6Jfft34k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2674521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=KgnxWL0Eq5h%2BIMwrqiZiUMW294%2Fji0PEm%2FYEy21smsk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2675491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=dXcksxbLuoTaAHzo%2FlordYly9MO%2B5wD4bllvA%2BSzTvQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.2676462Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A48Z&ske=2024-10-16T12%3A43%3A48Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A37Z&se=2024-10-16T06%3A47%3A37Z&sr=c&sp=rl&sig=23ISGIhgLwbZPZMegmYWXvv0khkLQazbx2cV6%2FvNazQ%3D","expireDateTime":"2024-10-16T06:47:37.2677389Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=eKENZWf%2Fk2f%2BMLv0QFCqMlKaBfwXm3Ceh8pXhGxEsCk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2759716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=O4dzunerTIZ%2Fw9SluhZXRmTZ8HSWzivsnTX7WFCWssI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:51.275547Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=9%2B1J%2FS%2Fh3da%2BCYWqb2LVbEu7VBbrguA2C41BWwqcz54%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2760964Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=34PaOrnsAM98Ey%2F0R7%2FdiE2yHwi2YzzWUO9si9OLyXs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2762445Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A51Z&sr=b&sp=r&sig=ynU7v9HH6A6AumYLgrt4JzARU1gtSv3fmjvnxnVRpbw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:51.2763858Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A51Z&se=2024-11-06T11%3A10%3A51Z&sr=c&sp=rl&sig=3jJwgQ2biV3d%2Fdt%2FsCqycxGTDTrqOtUcStxMLAmMGHs%3D","expireDateTime":"2024-11-06T11:10:51.2765272Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2441,17 @@ interactions: connection: - keep-alive content-length: - - '4908' + - '4902' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:37 GMT + - Wed, 06 Nov 2024 10:10:51 GMT mise-correlation-id: - - 6f6bd081-289e-4161-82ab-fcd742819e68 + - 158df71b-dc3b-45c9-9357-bff104d154e1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054737Z-15484bdf457slw4lnr1b940h0g0000000320000000002hg9 + - 20241106T101051Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d7w1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=mCVU997QmpK379b9JA6ePdXyfhxVKXBgu5tHtaqitRI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.6769275Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=lXlLMsi4y3JVwRgaPP2zIjgUlaRa3z6buyOqrE%2FgLWA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:42.67669Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=OYegPQRm%2FbUw%2B6IiE12kFDKRB9JclnlcxyjI2FoyeLA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.6769935Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=VuK2YaT35vJF%2BWWVwAOOG1s5RqYY3elgda0KFg6jfpY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.6770572Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=71xbsrBUcSGwA%2FR3Q9HWdDClobil%2FfgM95Ro4knletE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.6771186Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T21%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A42Z&se=2024-10-16T06%3A47%3A42Z&sr=c&sp=rl&sig=UKKbcYXEUq91C93XoM1E1061qboFTqrSbcF34LC61zw%3D","expireDateTime":"2024-10-16T06:47:42.6771789Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:01.478Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:57.406Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=kZyFQjLZIMg5SM2xZwo0CcZEhJP%2FtDHMhJc0vHR9Pzc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5796395Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=LXxCtISIIgfZBQPn1pddHPPI9u5amKlrW66V5nUGVeE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:56.5792389Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=OTCqQYl04G4EdqAO1DL8vDBo1iohGdg2SxSEiarSo8E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5799316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=OqK7%2Bhhpe8zNWCbflqj2rnTIaSCZ0KvgUBMPM3ikZw0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5800604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A56Z&sr=b&sp=r&sig=8favY2dx9hg68je%2F29bzl%2BokBeJvaL2PIQjylMcCWAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:56.5802323Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A18Z&ske=2024-11-06T17%3A07%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A56Z&se=2024-11-06T11%3A10%3A56Z&sr=c&sp=rl&sig=ZIeknvWJzqAClE%2FctgmoPQ%2BFBxZAHVH3JTO42BWWTQM%3D","expireDateTime":"2024-11-06T11:10:56.5804099Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:08:19.082Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:09:10.337Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4897' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:42 GMT + - Wed, 06 Nov 2024 10:10:56 GMT mise-correlation-id: - - 8742c845-9c61-4097-9307-df2f34ecb657 + - 89c4ce38-055d-44dc-a22b-f4bf4c13a8d9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054742Z-166cf497cd4g2mz5b71exmq12g00000002m00000000091fn + - 20241106T101056Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d8pg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,13 +2511,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs/list-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=90bTnYbSRw4JYeEdg7dJ3Xq%2FR%2F2zQk%2BNLma4KlCfhlk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.992369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=OTOIpz9mOrrCadx1KqZKrY3nQuqaPoPOOUvlVm6AhkI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:47.9915618Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=UsDEbI9rzjQukWGubvDZfapakfN7Mw%2FwbbPUn2hIDHk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.9926025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=BWYGfpRfo5j7zkX6ESjuUZc5sxlk2goaJoBR8tQBaMo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.9927035Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=r2ccfJQlMwK93domgHtPePkrtfFOZtQEAUTd9GTlt0g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.9928014Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A05Z&ske=2024-10-16T12%3A44%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A47Z&se=2024-10-16T06%3A47%3A47Z&sr=c&sp=rl&sig=VKyVhyKygicOk%2BL0wvUoGtr1W3e1gWlPG36syb34qNo%3D","expireDateTime":"2024-10-16T06:47:47.9928976Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:01.478Z","endDateTime":"2024-10-16T05:47:47.64Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:47.978Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=Zcsb6bp%2Bfc4Q4ocvm117SCigSaIuwwnlCB6EZBtqk5E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8754915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=uE%2BisoQYcTQKVsnzzf1w4aUPGkhXIGAAREoGR%2BAoiEo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:01.8747642Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=LsuAzAdH8zWwrYXmmaDk5zcT%2BJvVJM5xgaIBVztt3ss%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8758051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=SY5QuHqXF1xK%2BZZ3aFunLrzbrsloyvQBYiYTJCPUz%2Fc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8761098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A01Z&sr=b&sp=r&sig=zbH%2F5tc%2BEQ8GtaOH%2BhIc8yugXe3qMjFvoux2eKc0uu0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:01.8764314Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A01Z&se=2024-11-06T11%3A11%3A01Z&sr=c&sp=rl&sig=7nNZZVab%2B9x3ONzacK7Z7keLVVVe3r28KB163O9pkXM%3D","expireDateTime":"2024-11-06T11:11:01.8768084Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:19.082Z","endDateTime":"2024-11-06T10:10:59.827Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:00.886Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2651,17 +2526,17 @@ interactions: connection: - keep-alive content-length: - - '5023' + - '5029' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:48 GMT + - Wed, 06 Nov 2024 10:11:01 GMT mise-correlation-id: - - a5860b31-b6eb-44bb-8710-f99175705c17 + - 9223b2e6-dab2-4e1e-8c1a-d02c45d26072 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054747Z-165bfd566cfmxlrm0nasv9ne5w000000085g00000000bc9e + - 20241106T101101Z-1556595cbbckfbqphC1BOM59dg00000006bg00000001d9aa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2679,23 +2554,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:14.5148887Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:14.5148887Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c352c120-0c40-4080-89e3-75ba61bc0731.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":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:48 GMT + - Wed, 06 Nov 2024 10:11:05 GMT etag: - - '"c5017781-0000-0200-0000-670f52890000"' + - '"fa005927-0000-0200-0000-672b3fb70000"' expires: - '-1' pragma: @@ -2711,7 +2586,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 516F49824F274206AB178BCE450688D4 Ref B: CO6AA3150217037 Ref C: 2024-10-16T05:47:48Z' + - 'Ref A: 2F83CD21A8B4439CBF1559B2BCA8E926 Ref B: MAA201060514037 Ref C: 2024-11-06T10:11:04Z' status: code: 200 message: OK @@ -2725,13 +2600,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A48Z&sr=b&sp=r&sig=kckGqsJTOj%2BjebM1FX3SFZgj0tRCLQ8bMZ9%2FTJbbnVU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:48.9920034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A48Z&sr=b&sp=r&sig=jdq4iihTzFq58D9zcYMEix2a30J7VGWTEezXhK4xtik%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:48.991738Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A48Z&sr=b&sp=r&sig=hBQ%2FRX6w%2BFuOZZKXCGlJXemfX7k4X55MXsaVJQBtwlM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:48.9920867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A48Z&sr=b&sp=r&sig=Zwa1J3aXEszHt7t6IXTHoFYhUEjnUgH2iMB7Ka62lqk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:48.9921998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A48Z&sr=b&sp=r&sig=Vy7TnsoxbG9Gb2LEabIzJ2BHLQ3xgXyCg2QYIoC%2Fbes%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:48.9922999Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A49Z&ske=2024-10-16T12%3A43%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A48Z&se=2024-10-16T06%3A47%3A48Z&sr=c&sp=rl&sig=C6xq4H0Y%2BwUGCDUuiZSUQUXONKC2dIPQ0FwZAQnwS84%3D","expireDateTime":"2024-10-16T06:47:48.9923994Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:01.478Z","endDateTime":"2024-10-16T05:47:47.64Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:48.371Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=kX63RNSaAB6Pmzk8P9zLjBEfs77W2idlByzzkJSB1rU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9368221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=yfnL7CglS61BvM%2BhP5QcO3Tsw1wyWDYcyfB0I4EjTN0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:07.9364086Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=%2FQjrApNISOZHR9fRUF%2BT3Y3Su0QrfPFtfsqLEokybp4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9371468Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=o2iyFnGWTqJJqX6X9S1FHkJAHU9ah0j6Eh8P%2BzXMLA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9373428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A07Z&sr=b&sp=r&sig=KbFFZUadzWOZ8dP1r64gDzXB5Tn%2FZ6%2FzN30fo5d6gkE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:07.9375297Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A07%3A40Z&ske=2024-11-07T02%3A07%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A07Z&se=2024-11-06T11%3A11%3A07Z&sr=c&sp=rl&sig=%2FsisVsLxh6mAv2S%2F17%2FvoWiszaAlh2yOVHzjxW02yBw%3D","expireDateTime":"2024-11-06T11:11:07.9377732Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:19.082Z","endDateTime":"2024-11-06T10:10:59.827Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:00.886Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2740,17 +2615,17 @@ interactions: connection: - keep-alive content-length: - - '5037' + - '5039' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:49 GMT + - Wed, 06 Nov 2024 10:11:08 GMT mise-correlation-id: - - 4e184cde-87f5-4c6a-9dbf-ed83020714bf + - f490b69b-1b20-477d-a22a-9be946ce8c25 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054748Z-165bfd566cf4ghtzyebch8wysc00000004m000000000cpbr + - 20241106T101107Z-18557d4f7b8cdlk7hC1SGEb0x8000000050000000000ua88 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2768,23 +2643,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:14.5148887Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:14.5148887Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"c352c120-0c40-4080-89e3-75ba61bc0731.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":"2024-11-06T10:06:22.9269478Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:06:22.9269478Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:49 GMT + - Wed, 06 Nov 2024 10:11:11 GMT etag: - - '"c5017781-0000-0200-0000-670f52890000"' + - '"fa005927-0000-0200-0000-672b3fb70000"' expires: - '-1' pragma: @@ -2800,7 +2675,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EA9B685DBEDD49FDAF9944327C1C2961 Ref B: CO6AA3150218029 Ref C: 2024-10-16T05:47:49Z' + - 'Ref A: D9DF5F2CEDB64C67855A0C6C7F34736B Ref B: MAA201060516037 Ref C: 2024-11-06T10:11:10Z' status: code: 200 message: OK @@ -2814,13 +2689,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://c352c120-0c40-4080-89e3-75ba61bc0731.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case + uri: https://10fc8ea0-60ad-420f-a37a-36ec36b40777.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=list-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"0364ebec-3900-44ec-8a12-2ae535acbd3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1c713661-7123-4f81-b446-86818a492f70":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"ee0e0558-e1ec-4dc5-b7fe-74bcc679b5dc":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/acfdec9a-f811-4557-ac7a-0d8bbed864b1?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A50Z&sr=b&sp=r&sig=gQiD%2BC5YSQ80bOlyK1Cn6RgJuIQ9B65yj2I%2BTIiEAGA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:50.0337437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/61ab7a8c-8e69-4067-91b8-a0ab66497c1d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A50Z&sr=b&sp=r&sig=ChoXpyYtPkExpULhoLs0ld%2BhAe285FtKcdpL40YeIxI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:50.0334725Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/ac9fc36c-0646-4c1c-b3d6-be7968ebf9ad?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A50Z&sr=b&sp=r&sig=QqQ5T2iJAECXq5lQmKsvaAucm38QMUKcRRLCEWb2T50%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:50.0338418Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/aba45a6d-95e6-44d1-903c-2b1ff57830b9?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A50Z&sr=b&sp=r&sig=Kxu6rAL6yEiL4bxxW0pfjIMIs%2FZ70Nchsrcv%2BzVDOYM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:50.0339321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/ffd6925c-09d7-4c70-a9a7-4e410b0aee71/57e2d867-a238-4e80-bcf4-3a62cf465203?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A50Z&sr=b&sp=r&sig=J28ZluGgxpF%2BcPnvOo5v7aMbzI0VHPPQtBJ0dYrIyVc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:50.0340282Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://q57hq0w5v5mmg1owcaunxfhw.z30.blob.storage.azure.net/33aa77e5-fed8-4b5b-9683-0169c41e2121?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A16Z&ske=2024-10-16T21%3A44%3A16Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A50Z&se=2024-10-16T06%3A47%3A50Z&sr=c&sp=rl&sig=AGlNARFeOMuUiv%2FY60%2Fm9zB%2FOy2oXXDNhshHADY2xJ4%3D","expireDateTime":"2024-10-16T06:47:50.0341214Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:01.478Z","endDateTime":"2024-10-16T05:47:47.64Z","executedDateTime":"2024-10-16T05:44:59.721Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-10-16T05:45:00.098Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:48.371Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"f4df7db1-e2be-46a3-8d85-80f668860a0b":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0812eb6b-f8c4-4a19-9e9f-4d0ebc239ed9":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"166f0c4f-8d7b-4fb5-a70e-784638748c58":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/3b44439b-4a7d-4245-8928-dcbb2450606c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=GRXx89GhDayg8G%2Bq1ET9BrPRR4PcFAbgLwhEHCfWChM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2752446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/020f1929-d4a6-4179-b0a9-2fc6ca9b7247?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=xvNiobKAUYN0tRRxslaSz5PCBQq9HVku6gqIgTRhcIY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:15.2747746Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/05040a3f-7b04-4ea3-a891-3dc94e158d29?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=4fMF5Cc87R76LLrSeCBOf6Y8svbw%2BiLEJ%2FOmTN35ARw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2753366Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/ad7c3213-b672-4913-8102-440080088c74?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=cjA2n5j2JRgSVzKBEO636a8Rxwhzya2ujxSw8HWI4x4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2754256Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/496a2057-ab97-4ee4-9641-e64c9109f178?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=AQO7phAnXDepdCqDnITyXMXCb2DZpz%2BZ20fpx07hyyo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2755142Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/9fee8a32-0d64-4f9a-b0a6-bf7547376825_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=CkVk3OphfYv6MDgD6qg3hOQD3epdUSo40uduhUWdo0I%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2755979Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/dd030320-2416-44d8-bfc5-640bf2102cf7/9fee8a32-0d64-4f9a-b0a6-bf7547376825_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A15Z&sr=b&sp=r&sig=KlAlDTIjt74Ta%2BS7TaPZVi%2BFINYg4OYwPevf4WJJOVM%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:15.2756861Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://e18jnp94821m7whmti5qmiqt.z29.blob.storage.azure.net/9fee8a32-0d64-4f9a-b0a6-bf7547376825?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A08%3A18Z&ske=2024-11-07T19%3A08%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A15Z&se=2024-11-06T11%3A11%3A15Z&sr=c&sp=rl&sig=jZWSym8ghYvrEDyJNPTgIzqTG3J3wrRgKQ%2BMUcknk2g%3D","expireDateTime":"2024-11-06T11:11:15.2757721Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"list-test-run-case","displayName":"list-test-run-case","testId":"list-test-case","status":"FAILED","startDateTime":"2024-11-06T10:08:19.082Z","endDateTime":"2024-11-06T10:10:59.827Z","executedDateTime":"2024-11-06T10:08:17.511Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/list-test-case/testRunId/list-test-run-case","createdDateTime":"2024-11-06T10:08:18.439Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:11:10.025Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2829,17 +2705,17 @@ interactions: connection: - keep-alive content-length: - - '5044' + - '6247' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:50 GMT + - Wed, 06 Nov 2024 10:11:15 GMT mise-correlation-id: - - 1002c76a-8601-4ffa-806d-aaba5df27929 + - 135125c4-39e2-4472-a230-f5f62a212767 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054749Z-165bfd566cfdx5qskkr4cf20yg00000007m000000000dc7n + - 20241106T101114Z-18557d4f7b8r8cpzhC1SGEvan8000000056000000000a5b8 x-cache: - CONFIG_NOCACHE x-content-type-options: 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 d736fa1acdf..9a08b708bea 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:21 GMT + - Wed, 06 Nov 2024 10:04:09 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DB88B287833B44BAB8C3215FC6021A53 Ref B: CO6AA3150218019 Ref C: 2024-10-16T05:43:21Z' + - 'Ref A: 11C95415811043DFA2577D26A57C0245 Ref B: MAA201060514047 Ref C: 2024-11-06T10:04:09Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:43:22 GMT + - Wed, 06 Nov 2024 10:04:12 GMT mise-correlation-id: - - b51ccdbb-5b7a-4170-b3c1-3fbc7c6c5876 + - 1e8bc174-fada-481c-8465-82afeee0b517 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054321Z-166cf497cd4q86sbftw3zaubkw000000080g0000000097ff + - 20241106T100412Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vs2q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "120"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"e025f058-d7d8-4f99-9925-60156447c232": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "61eae012-95ad-400c-bc8b-51ddc7b887d8": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "120"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "e0639177-ccf9-4582-8ca6-fda71739fc98": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "1f2579fe-e31b-4ce3-ba64-7edbe671b549": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '791' + - '818' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:22.587Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:22.587Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:04:13.26Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:04:13.26Z","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 connection: - keep-alive content-length: - - '1054' + - '1046' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:22 GMT + - Wed, 06 Nov 2024 10:04:13 GMT location: - - https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-03-01-preview + - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-03-01-preview mise-correlation-id: - - e9ff9b77-a448-4dba-8461-7c8a0649a84f + - a07597fd-077d-49d4-9084-d5633869eb64 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054322Z-18489d46dccnnh2b19wcyx7sm000000007zg000000008qs1 + - 20241106T100412Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vs5h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:23 GMT + - Wed, 06 Nov 2024 10:04:13 GMT mise-correlation-id: - - 29cc7864-1e90-4baa-8fcf-a2e3a7503470 + - 43947781-9e8e-4574-b820-fd7759c40be3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054322Z-18489d46dccnnh2b19wcyx7sm000000007w000000000gd4v + - 20241106T100413Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vs8e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A23Z&sr=b&sp=r&sig=0O74LUfvrkFfOzKFIpuc%2Fr2tCek28%2Foze%2BvA7p8oFV0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:53:23.6379434Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A14Z&sr=b&sp=r&sig=hjYZfLghOgCVnxa7VfbZoR%2FvHoumrjHGcq0mpbkRFq0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:14:14.1370645Z","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 connection: - keep-alive content-length: - - '576' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:23 GMT + - Wed, 06 Nov 2024 10:04:14 GMT location: - - https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 5c386cb1-cf1a-44d8-97a4-462362180e9d + - cbf1cce4-d7b6-46ee-8536-2540cb8d4c36 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054323Z-166cf497cd47w9bdc501r87meg00000004ag00000000nwxd + - 20241106T100413Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsad x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A25Z&sr=b&sp=r&sig=hOSZ7dliuAvMpo7j3hsPx9X1k7yHceQ4v7dfIQb%2B2W0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:53:25.5710093Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A14Z&sr=b&sp=r&sig=hjYZfLghOgCVnxa7VfbZoR%2FvHoumrjHGcq0mpbkRFq0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:14:14.4824328Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:25 GMT + - Wed, 06 Nov 2024 10:04:14 GMT mise-correlation-id: - - 0576e44e-2865-4c28-a951-e504f9c0a634 + - 4155b2a7-6fde-4bfe-8649-cdcf5291bd0d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054323Z-166cf497cd4z69dq84z53rfxzw00000004z000000000cfq4 + - 20241106T100414Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsca x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A26Z&sr=b&sp=r&sig=qCTBcGgdUCS%2FdDfvwX4erNXpdEexa9pi4WvVXkpk%2FXM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:26.1538083Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A14Z&sr=b&sp=r&sig=eBSWI0wR89EHMLH2qGRk5m8evnGXHNFXfmuhoKZWk94%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:14.9958556Z","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 connection: - keep-alive content-length: - - '571' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:26 GMT + - Wed, 06 Nov 2024 10:04:15 GMT location: - - https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 47b2c2d3-9acb-4274-89c6-a6c96d5353c4 + - 054f72d3-555e-40c8-951d-31ed8cda8d50 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054325Z-18489d46dccggs4rh24eyxmvec00000007yg0000000008sz + - 20241106T100414Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsdx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A26Z&sr=b&sp=r&sig=b%2F5WkxDj7sXFWM39Ml4pvZMjAmyTuORlXkEoTApB6IU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:26.4735547Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A15Z&sr=b&sp=r&sig=GuVJEQhWF8ubBAJ8sxxv8tpnWGETCEaO6ee%2FibZT%2Fl8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:15.3251533Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:26 GMT + - Wed, 06 Nov 2024 10:04:15 GMT mise-correlation-id: - - 10c6655f-a97b-4074-bcb2-f7f79dd0f6c8 + - 1484c1ba-281f-425b-b837-2cce0acb09a1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054326Z-18489d46dccggs4rh24eyxmvec00000007s000000000h3z3 + - 20241106T100415Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vsgt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A31Z&sr=b&sp=r&sig=xZozJOgn0thC8qIpGS1ysewUf7uRQAIO8y9fqydI65c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:31.7492423Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A20Z&sr=b&sp=r&sig=TCOqEASvUARZpZ9f43vDIpXZ9bZ2b837zEXLIrGX5fQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:20.6676614Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:31 GMT + - Wed, 06 Nov 2024 10:04:20 GMT mise-correlation-id: - - 7357c614-0034-48c4-9f41-e3c35519bf4f + - 4f0a85ff-eb38-4e7c-be2e-8afa7c9b0ecb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054331Z-166cf497cd4mqn5ksypuy7gvan0000000840000000001p7p + - 20241106T100420Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vt5r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A37Z&sr=b&sp=r&sig=ifPm7vymbb%2BTZXngBc6CRezc92pqjKer2EsuZv3vXOI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:37.1386308Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A25Z&sr=b&sp=r&sig=34MgwNQ963wWOFNvF0aO9eRHTop8duswYEfHfOKqc9w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:25.9857804Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:37 GMT + - Wed, 06 Nov 2024 10:04:26 GMT mise-correlation-id: - - 9365b822-e2be-463e-8be7-e21173090e4d + - 4e952915-53ef-4f59-9482-f34953e8248e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054336Z-166cf497cd4jdw4g4y9hv6ku6n00000007sg00000000hft8 + - 20241106T100425Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vu27 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A42Z&sr=b&sp=r&sig=nlJLMUZoGSUhDh7M%2Fnwlak9%2BTEA8Dn4cr1ILKXErzZ8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:42.5932053Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A31Z&sr=b&sp=r&sig=UgbNcG%2Ba1AWsqfd5Kp%2FKx2IZp2XDayQ2f09RH5hjC%2B8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:31.2836086Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:42 GMT + - Wed, 06 Nov 2024 10:04:31 GMT mise-correlation-id: - - cb13f056-be22-4260-974a-3190d44ade37 + - bed53583-1277-4ed8-88d1-30a70c1a128a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054342Z-18489d46dcc7dl74pe8mubs3xc00000005700000000041zg + - 20241106T100431Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vuvg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A47Z&sr=b&sp=r&sig=xxd3K8c1jHQRau6lLbFT3I7L14uT5B1v2XSdTyix8rQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:47.9162247Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-06T17%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A36Z&sr=b&sp=r&sig=gIhzj%2FWhhR3C0b9dUJpx8anYBBt0hj1aG13e8PVjl20%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:36.5752328Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Wed, 06 Nov 2024 10:04:36 GMT mise-correlation-id: - - 554c02ba-4a6b-4706-839d-0b3aa26ae342 + - bb56f133-77f1-4346-b7d1-7f5eb1fb296c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054347Z-18489d46dcc7dl74pe8mubs3xc0000000580000000001zhb + - 20241106T100436Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vvhh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A53Z&sr=b&sp=r&sig=vs7qcidQ6Eivo0Gz9GprkodEsUB8juB%2FOINmgOSIrJ8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:53.313898Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A41Z&sr=b&sp=r&sig=xgobI59ZbdQPUAlxrSOWb%2FilX0D2Iv2MRTlnVbLd0%2FM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:14:41.8659551Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -567,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '566' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:53 GMT + - Wed, 06 Nov 2024 10:04:41 GMT mise-correlation-id: - - 44159238-9e74-4762-87b7-cd073c7ddfc1 + - 8f218b6e-59a1-4bcc-97f6-96055121feb1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054353Z-15484bdf45792m2k6spfmpcgcc00000002m000000000emzh + - 20241106T100441Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vw6r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A53Z&sr=b&sp=r&sig=oVvFBGlouP2blm6WI6SFbI9L7jnkbNAroYHh1QiEEGc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:53.767759Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A42Z&sr=b&sp=r&sig=EcICtOYLcLMlifs3D49XceoCqGUjLE6Zwi3tnJaxXiQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:42.3678764Z","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 connection: - keep-alive content-length: - - '554' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:53 GMT + - Wed, 06 Nov 2024 10:04:42 GMT location: - - https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 93469117-dbc3-4047-87e2-f7e8b1b4cdac + - e09f66bf-ba9e-4f93-9574-1a172d5f5f76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054353Z-18489d46dccd6w2hyw4dcpanpw00000007vg00000000ngtf + - 20241106T100442Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vw8f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,54 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A54Z&sr=b&sp=r&sig=QcjlZowmDbPe9MYFI1MUjNhzWpj3eVIS2PGMDDfh2bo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:54.175262Z","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 - connection: - - keep-alive - content-length: - - '554' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:43:54 GMT - mise-correlation-id: - - c0242103-3c2d-4432-898d-c98a91be397a - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054353Z-18489d46dcc4mwx2ddastu82g800000007t0000000009qgx - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A59Z&sr=b&sp=r&sig=SZTxVx86sdnRK3uKiMqxDeRyUOrBESuDV6uo%2FyZehKU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:59.5879145Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A42Z&sr=b&sp=r&sig=tqXfQzFEp%2BzAEmxEQZEFvY%2FldKbeL1lAtVAhhNn%2FpU8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:42.6667232Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -787,17 +746,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:59 GMT + - Wed, 06 Nov 2024 10:04:42 GMT mise-correlation-id: - - dbd5d8af-f01c-4acb-b5d2-94b9c715bd6a + - 7d1af087-5925-4d69-b98b-f4071bfe4d03 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054359Z-18489d46dccp2df8e3m20gzz8w00000007v0000000009bw0 + - 20241106T100442Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vwah x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A04Z&sr=b&sp=r&sig=cRBINcpP2cp8znRekNvqjPQovxkV7JfcR%2FxRBu0yCrY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:04.8046524Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A47Z&sr=b&sp=r&sig=YIQH1Ym6AjBuI4JRE4ZRwRYjSDcjoU%2Boz3emyl9qAj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:47.9529534Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -829,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:04 GMT + - Wed, 06 Nov 2024 10:04:48 GMT mise-correlation-id: - - 5439ffc5-c2b9-401c-b72d-78c4115f1ba4 + - e7d57dbb-514e-42dc-bd95-44a77834f00d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054404Z-18489d46dccmwsl5v24n61fa8400000007v000000000ewbk + - 20241106T100447Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vx9s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A10Z&sr=b&sp=r&sig=mtK1PDWzpOvrLsAu25McKbFT8yrNAqnIBNAsQrEf%2Fbk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:10.1774094Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A53Z&sr=b&sp=r&sig=75aor0Tft8EDV2FgNT5sWwvW9OR9bBLCbrv%2BUvjStFk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:53.2568899Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:10 GMT + - Wed, 06 Nov 2024 10:04:53 GMT mise-correlation-id: - - f6066c96-8c22-400d-a794-fd3ca0639221 + - 4e2e45bb-d83c-46e5-8ef8-0b75f824369b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054409Z-18489d46dcck852hghpv4950b000000007u000000000k86r + - 20241106T100453Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vy2s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A15Z&sr=b&sp=r&sig=8urINMJd784Vu9ZkC1jyAMOOC3wV0bsojlUlzvdbamg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:15.5343812Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A41Z&ske=2024-11-06T17%3A04%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A14%3A58Z&sr=b&sp=r&sig=uR5%2BfR3XK37NCKiknRjy%2BMlFlgNq5VOM6F392vAetSo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:14:58.5417573Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:15 GMT + - Wed, 06 Nov 2024 10:04:58 GMT mise-correlation-id: - - 0d71b4ab-789e-407b-b842-7bc246d81277 + - 13913d91-480f-4854-ae3b-bf540767be07 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054415Z-15484bdf4576j5mtr8k4ftgbd400000002pg00000000pft7 + - 20241106T100458Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vyx8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A20Z&sr=b&sp=r&sig=GHyMcPUPTyU72vSw69vO6go%2FjBNxwLkvXJXdSvN99%2BU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:20.7442953Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A41Z&ske=2024-11-06T17%3A04%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A15%3A03Z&sr=b&sp=r&sig=cFMzvt%2BiQ4RDZKyiWS0yOacQ6w26cVEeOvpYL3bwgFY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:15:03.8741859Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:20 GMT + - Wed, 06 Nov 2024 10:05:04 GMT mise-correlation-id: - - f97e59a2-950a-471e-b7a4-1d6bca30a984 + - 9b5114d4-31d8-492c-801c-1053a58331e4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054420Z-18489d46dccfkdmbtzwpeeg8f80000000810000000009egd + - 20241106T100503Z-1556595cbbcdp6k8hC1BOM684400000006g000000000vzm7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A26Z&sr=b&sp=r&sig=wbmkk%2BQQMsvlippk8um8fUN%2F8zjsTgL34AJE6AjpIvc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:26.1036413Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A15%3A09Z&sr=b&sp=r&sig=nhT2KmfJeLfpSU9qhAm0ZBOcUjni3FJH3Z572%2BfFGsg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:15:09.6027563Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:26 GMT + - Wed, 06 Nov 2024 10:05:09 GMT mise-correlation-id: - - 99e5f825-a329-449d-886c-4edd6166bbb1 + - 784408e6-ba37-4896-83f1-3e6b51394809 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054425Z-18489d46dccggs4rh24eyxmvec00000007rg00000000hr30 + - 20241106T100509Z-1556595cbbcdp6k8hC1BOM684400000006g000000000w0ax x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A31Z&sr=b&sp=r&sig=DGV%2Brhl6A36yYNiWLUjADehCXH%2B99MTaE1outSO96v4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:31.4914931Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A15%3A14Z&sr=b&sp=r&sig=uoSLQIsIb6ha7%2BvWs9QelK5lU%2F8RVSl908UhzentGTE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:15:14.8859862Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1039,17 +998,17 @@ interactions: connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:31 GMT + - Wed, 06 Nov 2024 10:05:14 GMT mise-correlation-id: - - 38038af6-a87d-4231-93d6-26d5883d653e + - 394c0658-1324-41d8-8df7-ce69c407b420 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054431Z-18489d46dccfp7rz6a82yt7pbw00000007x00000000095zy + - 20241106T100514Z-1556595cbbcdp6k8hC1BOM684400000006g000000000w0zr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,13 +1026,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests/metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A31Z&sr=b&sp=r&sig=O1r1k5n2iRt%2BrpcgWAnnjxyHAArh43iN7JN3NPvNUm8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:31.8265579Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A31Z&sr=b&sp=r&sig=3XKurBJ37XkjpfKKIEwGfjFcxEhN5%2B%2FCUDEo%2Bt7zDSY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:31.8268498Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A31Z&sr=b&sp=r&sig=4tL4fWYkgDwTLx%2F3c3Au0ciDszn9LqLT%2FO0Cr1w6I%2Bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:31.826936Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:22.587Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:27.038Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A15Z&sr=b&sp=r&sig=%2BNwHaQuiuYTnS00gb%2Fg4b%2B1QyTryAPytN8WsIxc5sdg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:15.1774846Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A15Z&sr=b&sp=r&sig=hmBKihunCCE1CAnQC4C40qzn8%2BwdW5m6eQ9BiK2XVgk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:15.1780781Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A15Z&sr=b&sp=r&sig=Qe9nqu7ARB8tLw5hQy9dVXPnA3XdGxmvb%2B2ykBBxa3c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:15.1782675Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:04:13.26Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:14.848Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1082,17 +1041,17 @@ interactions: connection: - keep-alive content-length: - - '2778' + - '2771' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:31 GMT + - Wed, 06 Nov 2024 10:05:15 GMT mise-correlation-id: - - a8c89df6-d7cb-4a53-80f4-90a7b470c2ea + - c03b18e1-47e8-4b01-af5d-6046b3c4e2f9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054431Z-166cf497cd48w6x2zuxa69f51n0000000820000000001nsd + - 20241106T100515Z-1556595cbbcdp6k8hC1BOM684400000006g000000000w112 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1110,23 +1069,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:32 GMT + - Wed, 06 Nov 2024 10:05:17 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -1142,7 +1101,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9326CF48106445C3878681733CA52F4A Ref B: CO6AA3150218023 Ref C: 2024-10-16T05:44:32Z' + - 'Ref A: 791FFBCC26224119BB6E85EDC8DCD066 Ref B: MAA201060513045 Ref C: 2024-11-06T10:05:16Z' status: code: 200 message: OK @@ -1156,13 +1115,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A32Z&sr=b&sp=r&sig=9MLdiVM70AAV7WR0%2BNjtA%2FoZehho5HnkKAMAcKPJNc8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:32.9776714Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A32Z&sr=b&sp=r&sig=VOB%2FpJyPHNrtHDILTidc8AiBmx2%2F9tA2arIY9FJwIzg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:32.9781006Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A32Z&sr=b&sp=r&sig=LhZVVYfNUonCnL11y0x1Wv40U7DK0QIXPajlIB6%2BZ2w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:32.9782017Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:22.587Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:27.038Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=HUY69oUVDYOYKG3OBye6ahwTu08xnN6wxR4%2FDr7Jjfg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:19.553463Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=9y6%2F6L8p7Dcrph9pCevJJJLVcRolMzgDDEwe46QcFdo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.5537335Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A19Z&sr=b&sp=r&sig=tVqPBRpRbXOz1X3X0m3W16SpD5oL2FTvJKhREmC0PLM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:19.5538527Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:04:13.26Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:14.848Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1171,17 +1130,17 @@ interactions: connection: - keep-alive content-length: - - '2787' + - '2776' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:33 GMT + - Wed, 06 Nov 2024 10:05:19 GMT mise-correlation-id: - - f4642f88-0a45-4821-9176-c9770730749d + - 8565128f-a083-4f49-8010-4ec34946b369 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054432Z-165bfd566cfq5wbnrgy8qvqxnn00000009v0000000001gx9 + - 20241106T100519Z-184f6b5dbd8lzl5phC1MAAgw8g00000005sg00000000ccue x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,23 +1158,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:33 GMT + - Wed, 06 Nov 2024 10:05:21 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -1231,7 +1190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2C23DF2CC7204E8CA3F98F8B834FD366 Ref B: CO6AA3150218031 Ref C: 2024-10-16T05:44:33Z' + - 'Ref A: 12A0B0EB838C44F1BC1796911A995BB6 Ref B: MAA201060515035 Ref C: 2024-11-06T10:05:21Z' status: code: 200 message: OK @@ -1245,9 +1204,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1260,15 +1219,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:33 GMT + - Wed, 06 Nov 2024 10:05:24 GMT mise-correlation-id: - - 95ecebe8-cea7-4126-9734-48051de36e5c + - d504b7cc-817a-4c79-9763-b9a162f7e05a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054433Z-17f5d849667qg6t9uvfp3m2p2w00000005s0000000003znc + - 20241106T100523Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bapk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1292,31 +1251,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=toOocUOmavuFAvk9Q3CueafUTDlJz8UzQvqjvcblAVo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.098685Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=XlDOPbRz%2BVzjVHrvCUQ3mn5hnAMZQnAg4K7HCOdYhC0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:35.0983727Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=AfvSl5lAavHLLKFRz9vOcZUb6AjarbgFvN1aqAtmd4Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.0987904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=%2FF6d9A5PzspxN6R%2BDGyx44GYhSGlouzm6tSbB2QOq8A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.0989029Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=59wTcon%2FSsRZPwAEyk98G3d4dshMf%2FB1FzIil7lUp0A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.0990049Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A31Z&ske=2024-10-16T12%3A43%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A35Z&se=2024-10-16T06%3A44%3A35Z&sr=c&sp=rl&sig=acS%2BD0Za6lZ4%2BINEj5jhD6%2Bm7PAvAo%2B95j4%2FjCXFRpU%3D","expireDateTime":"2024-10-16T06:44:35.0990978Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:34.877Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=TcZFdGdexQaTgDaKdugj1GGIBAfWSGZzL%2FZDcg9ZAmM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.2819721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=AxtuMoXXU8rFu2T7b0NrP5wApPIVWA5%2B0o4JuO%2Fn1Qw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:25.2817037Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=QzBn8EH8MLLslVt%2BpLrYuSgivjX6emBJlKfxpVTj8dw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.2820388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=5h8dwmV5cHtfodIv%2BgDv01Uv%2FuiUZ8aXsvaOnQMccT0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.282104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=WyI4%2FpV55QBEtR9NtQbbNE3fJsALT%2FRKFqz5vyYrDQk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.2821665Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A15Z&ske=2024-11-06T17%3A04%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A25Z&se=2024-11-06T11%3A05%3A25Z&sr=c&sp=rl&sig=UirfO%2BAM0ycCwKjqaF3fgA%2FfkpJ4a%2FNC%2B%2Fm8%2B%2BDD90Y%3D","expireDateTime":"2024-11-06T11:05:25.282235Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.05Z","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 connection: - keep-alive content-length: - - '4868' + - '4875' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:35 GMT + - Wed, 06 Nov 2024 10:05:25 GMT location: - - https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2022-11-01 + - https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 792777fc-832c-46a7-9600-616605304223 + - d7b7c847-eeb5-4916-af52-aafb7966189b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054434Z-165bfd566cfflhdmg194td87c000000006g000000000bnnp + - 20241106T100524Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000baqh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1334,12 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=HOo2yBDhtzlY5IQ95aNYwOq94RrSAhyvXrNckjbujYs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.6399146Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=wxHlJIPq5rsQxR11hlz5TVe%2ByRZe%2BJHGwTwLFYrZCZk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:35.6397028Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=b3wiK3o35noUiP6HJ3iq0djyqh%2FU1BohD9a1y7P2cNc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.640003Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=RJUKb5SQfRacedgYPgYScGn13M%2FCdbcWWP512kYEABg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.6400899Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A35Z&sr=b&sp=r&sig=riG9xk3YIARxQ3czcomUiSJ%2BoIjBkaolG6bETm2a4cY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:35.6401767Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A35Z&se=2024-10-16T06%3A44%3A35Z&sr=c&sp=rl&sig=wWOKUlUAV%2BICXDMkUtbwaByp%2B7XI6ZkeXWRuLLwL8hg%3D","expireDateTime":"2024-10-16T06:44:35.6402637Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"NOTSTARTED","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.447Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=pT7HkEiUwMm7e1%2FGZ1fqSGGKXLDtfv8fyH1Tdf9Xnxw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7627015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=d1w38SI%2BozIi9qR9fRSlRlPhpxHG9adarGRFak3sOOA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:25.7625223Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=cBIajPd%2FY4j1e48vKHt1F4r%2FihxTOeCFQhrhavtp1zs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7627452Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=LqnWE7wLRARAfBYtaHK1uQ%2BPTdg0Ox0%2BD4y4DNKKG4I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7627874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A25Z&sr=b&sp=r&sig=3zQIgNNbseqKXNMl2wHx94Nn1rJWamFFjNfwh8szyf4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:25.7628309Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A25Z&se=2024-11-06T11%3A05%3A25Z&sr=c&sp=rl&sig=z4sAN4c2jR6IW0YeSCNX6uSNXJrbSCeQpHD93%2F75TH4%3D","expireDateTime":"2024-11-06T11:05:25.7628723Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1348,17 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4909' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:35 GMT + - Wed, 06 Nov 2024 10:05:25 GMT mise-correlation-id: - - 5b0d26dc-ba20-4a51-b192-67ad9aceb8d3 + - 27a6df8c-7321-471d-ab4a-3cd21f581342 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054435Z-17f5d849667v4qhr7z7qcf8ddw000000071g00000000ckf3 + - 20241106T100525Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000barv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1376,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A41Z&sr=b&sp=r&sig=mbGdG6Z58EAsWfR8wVO0SmgK2pmvkAgTIsN5QyGakxQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:41.0090071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A41Z&sr=b&sp=r&sig=TIBkknazA1LYRKy4c0T3t0lNeQNLYgDxFotLOX0xjAw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:41.0087248Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A41Z&sr=b&sp=r&sig=3ODBAtGPNT1BwDI2%2B2LnKU2KJLFuQ3ClawZlxGWmeK0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:41.0090928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A41Z&sr=b&sp=r&sig=YyBqSzabEsaaAZ690dOkTQDxIfmSt2UTLGM0ojlwu8Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:41.0091825Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A41Z&sr=b&sp=r&sig=J72B2kK6IVrXx8L%2F71fL5PPIVohGtTQ7CFUgnSsCyYs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:41.0092637Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A41Z&se=2024-10-16T06%3A44%3A41Z&sr=c&sp=rl&sig=H%2F%2FVJEZEagZQqIW3Q1jFjpTJXKF6483zoDXcWNTBmgA%3D","expireDateTime":"2024-10-16T06:44:41.0093589Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=%2BtdSeoVd43HF%2FE4%2FddQIYyn8CXSxY0vT0RKH85mS91A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1214694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=22PETdueXdJvPZzgMf1rGzGKBW97EymN7uYlss9CiKc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:31.1211893Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=AmdCWUwJj3PxR%2F70z7fH8B3NYfdcam%2FVzjMovTdk%2Bl8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1215586Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=8eHptc%2BwPGA70OieBgDpZyETN61D4mOsR9z%2BwR6poKI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1216473Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A31Z&sr=b&sp=r&sig=CIgfBQL63KJvywpoL9BpJkLfA4QtgpqCTFUj7ZEpxKo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:31.1217386Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A31Z&se=2024-11-06T11%3A05%3A31Z&sr=c&sp=rl&sig=0HRl4t9P3KbAVyWso%2FvGrSgO23HAERRcIaTtQjir3vE%3D","expireDateTime":"2024-11-06T11:05:31.1218236Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1390,17 +1349,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4913' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:41 GMT + - Wed, 06 Nov 2024 10:05:31 GMT mise-correlation-id: - - 788d582d-607b-48bc-abf8-270f9b0467d9 + - ce19f556-66bb-4baf-88ec-cf4a7221e305 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054440Z-17f5d849667tvht4m3rc1u623400000008y0000000000xqe + - 20241106T100530Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bay8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A46Z&sr=b&sp=r&sig=n4hr1l4useSuKPuCtJiwyi%2FNLp%2Bu9JVrJJv9ukCiyWk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:46.2946891Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A46Z&sr=b&sp=r&sig=dZTmXiHHMu8vK1LoFy2GUWoVoAYq5Q2rQH7BNTtC%2BPk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:46.2942995Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A46Z&sr=b&sp=r&sig=3r3UPjlAO%2F7crryMEgyTxa7QoJKtmqp8t%2FZNU3MyX5U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:46.2948597Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A46Z&sr=b&sp=r&sig=%2BAY5AqGyQlEjBV7EapqNgfTbtGXLBgcZIkzM9Ka2wA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:46.2950404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A46Z&sr=b&sp=r&sig=5SRY6DHC4%2F7Xc9zxO%2F2kTVFLGgKQwQRkJLrVaQzMaYw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:46.2952324Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A46Z&se=2024-10-16T06%3A44%3A46Z&sr=c&sp=rl&sig=lOGt3Nh%2BfUPv8GuWqDVlXxq3ch65x88lSJVzpAMdtCI%3D","expireDateTime":"2024-10-16T06:44:46.2954024Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=nkstebLc8R7hW0OYaGQT59x%2BmSLMWkNYTPtlA2mBtrw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6121089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=YXYFg7yo0ndwG1ruRoSd4I4Iw0%2FNtKp5P6s7zKJHqig%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:36.6115752Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=W8X9Fb6aBBlf3RKbpoR3rd%2BaUvQuN4aL63COAsp4vGI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6122388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=w01eTLsmRH%2FBJgi2XhzFp21fM%2B%2BUrQCLa8VYhk3I3Uw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6123511Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A36Z&sr=b&sp=r&sig=qCj4p7eW4HHd7u2Exqo9hUj6swq3n%2BdUFVBpO43QDDc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:36.6124507Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A36Z&se=2024-11-06T11%3A05%3A36Z&sr=c&sp=rl&sig=Iq6lfFqD6z88zqCG7LsrrtCIIa7L6pWxclzFHTvsqJk%3D","expireDateTime":"2024-11-06T11:05:36.612556Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1432,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4914' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:46 GMT + - Wed, 06 Nov 2024 10:05:36 GMT mise-correlation-id: - - de9e4303-1ce3-4147-826c-c99127b76bed + - 69b6664c-152e-4f28-96dd-3e19a54d2033 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054446Z-15484bdf457jvkjnektp2rx17000000002t000000000ddzt + - 20241106T100536Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bb5z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A51Z&sr=b&sp=r&sig=OVVl4jFXZkABm5ICPlyIuiISrQeCHG3V1Lk0DFqyxqY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:51.6417876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A51Z&sr=b&sp=r&sig=NR%2BvXAGTNpFiRqfMT3FOv4nzhj0HSdt1F5uPjsnuIj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:51.6415422Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A51Z&sr=b&sp=r&sig=m8XFDndJ%2ByAgRKPCLEGuJTR%2B%2F%2BWPqRgkObWQX9BQcUk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:51.6418532Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A51Z&sr=b&sp=r&sig=kq0YuK6OfJflEUeJw8IKPdPF8wqF6dSyashIgZVt41k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:51.6419155Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A51Z&sr=b&sp=r&sig=VndnGbzh5FzRNeR1Ew4B6ZMSc5hzdzg8NQnzbE9RTLo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:51.6419783Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A51Z&se=2024-10-16T06%3A44%3A51Z&sr=c&sp=rl&sig=MVKqd7Arv36dmRQBkYG2XhsqZg1xXYErdf5BDcT%2Bolc%3D","expireDateTime":"2024-10-16T06:44:51.6420409Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=rbfhyL%2FxsZkXohO%2BfhNrnVqTzZp9ZzAZk7SVt2MOkic%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.9624335Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=0uodVoKsyDi56SnpvR7%2FlTulM18L9Pe5%2B7kDuq%2BR%2F9M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:41.9617925Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=ua7nyuSb%2F8jyqL3UOpMbDwckVW3%2Bdz89W2DEYqlTvG0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.9626484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=FH1uiEfY%2BVcFQ7tMvoPTebgzs7VlFYrxKzY1p3Pbt98%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.962867Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A41Z&sr=b&sp=r&sig=L10ohY8gCexTXV9y54sZmNMCv8pPxIoB9JeZMBS1vtw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:41.9629996Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A41Z&se=2024-11-06T11%3A05%3A41Z&sr=c&sp=rl&sig=jJmI01RLOpPCGmPF%2BztGsKAWDHa7GvsyxbfrQ3pwivg%3D","expireDateTime":"2024-11-06T11:05:41.9632299Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1433,17 @@ interactions: connection: - keep-alive content-length: - - '4908' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:51 GMT + - Wed, 06 Nov 2024 10:05:42 GMT mise-correlation-id: - - abbfade1-203c-4b10-afc9-95c057b530aa + - 78c347ba-11ec-4dc4-8533-b95bb13b6ae2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054451Z-17f5d849667l8zqnh8wn56gx4400000008d000000000k0f2 + - 20241106T100541Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbc2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=GSLBCxGEc%2BwFLuTihpopaQhJ8TkxFWoyrOPBvYjVZ%2Bk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.9737464Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=6Rf5TGr8s2farSTu%2F14BYoBKeLpfbR%2FlJUM6zatcbRg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:56.9729987Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=aYdY2fAF1E%2FhoqiBzcvF5VVmbJ60rC9RRxBcB%2FCt6uc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.9740776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=A134jJmOLPn8MO86QqCX0KbaFkFmJ919v6qDlKmNrfA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.9744187Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=yrf27OCi6oryXx42at5TfF0MfgYlkN5tgwC6npxN9Ko%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.974734Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A56Z&se=2024-10-16T06%3A44%3A56Z&sr=c&sp=rl&sig=Lfl2KIuG%2FXLk0DXHxQ5vYbazZNUFx4wedf7mymdhNOk%3D","expireDateTime":"2024-10-16T06:44:56.9752569Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=9aS6a4o1rOct042YqgkhMqshiBYLZkh1KInZChwZvX0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2858056Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=%2B7oO7%2FEzWRuh8%2B%2BAWnE1W%2Fpkm5tbIT5Hzhjx9awzVNM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:47.2854064Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=JD1LsH6fUyYSNIXtmh65%2FE11x%2F5UTTg6at5ylRksPgc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2859487Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=YkAY%2BpHhtvBk%2FMqWQYIEP59tx7mAbhl96v4f%2BEkjrSE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2860951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A47Z&sr=b&sp=r&sig=4pn%2B23BLRCug6usWWx6T7Fxr3YZoO6qkgbqfexhzCA8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:47.2863451Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A47Z&se=2024-11-06T11%3A05%3A47Z&sr=c&sp=rl&sig=1B3Z7Br09VWQcUw80AlaCsGcx2y5rj7A38gE0SWpxUc%3D","expireDateTime":"2024-11-06T11:05:47.286544Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4916' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:56 GMT + - Wed, 06 Nov 2024 10:05:47 GMT mise-correlation-id: - - 1f2acc3d-835d-4664-953f-c32da236646c + - 654e7a58-f049-4b18-91c6-a3a74ffc7f4f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054456Z-17f5d8496672vwgf4k1huv853400000006w00000000090zv + - 20241106T100547Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbhb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=3YMe1qfuWuyDj3do%2BhxxuwIOdaBznDCF1W7EdVSs1oo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.2472553Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=ZwBTAZXN0YEmdpKDm%2B47FmDDxHjpyhxa8rbAr3TU2Qk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:02.2468613Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=byOsKJDQU53DesQugN4z2CyfczuXh6opesMpO4CA%2FgY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.2474321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=45Iu41mbDeAJajfEneC1vP%2FeyplE3BfRZjHiJOx%2B%2FkI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.2476027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=Uq%2B9AhGIBGBbj5OFXexZpFBzdqxae8tLuKDMULLLNeg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.2477711Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A02Z&se=2024-10-16T06%3A45%3A02Z&sr=c&sp=rl&sig=4uhXtaLAnR8PQw7zcfa3gd0CfWlDhK4lCPClbPbKS48%3D","expireDateTime":"2024-10-16T06:45:02.24794Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=19R4vqdLoPLt98CbajunUKDnXy5%2BAGVtp%2FJmLkU3U6U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.601857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=AwMn%2FMwwv5lAw6dQ37VPJeb6huY59fNC29sGKRlcXes%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:52.6014539Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=SRvps4A0RjP9hTZIjc%2FfzkdMw7wn3j6ipsi1KwvguA8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.6020363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=ZHH4vqTa%2F1k8U2bN2hUCDfeor28ffUFubyCOe2S85hg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.6022213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A52Z&sr=b&sp=r&sig=9Tez0z0OgX9IOCNKAUlljASTzp9o1%2BW%2FIb29hSZ0Q3Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:52.6024639Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A52Z&se=2024-11-06T11%3A05%3A52Z&sr=c&sp=rl&sig=q7UxKbABwBl1EBI87C1ZO3NNhogvEyQ9fGve1EhOPAk%3D","expireDateTime":"2024-11-06T11:05:52.6026431Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1562,13 +1521,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:02 GMT + - Wed, 06 Nov 2024 10:05:52 GMT mise-correlation-id: - - ba1a42c8-0343-425d-aa5b-17d45711f829 + - 588fd6ce-821f-4797-8531-49aa81ad3cd1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054502Z-165bfd566cfz6tr4stm33d094000000005q0000000001xzy + - 20241106T100552Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbr7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1586,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=mAM8HM2YTqK1gIu1kbV6RwdC1qS3d9756qbd%2F2hhwhs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.4189598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=1SLDNuwNsxpnhbA3ZXOqbmE0kru1%2BKXxe4%2BFqBd10BI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:07.4186804Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=RoU0V1BAx0H3RkiegjFMWHPlOtApfmbIiYTAqjxZGfU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.4190451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=pZcFjnpvTbgldqD9Eimlc9LqmN8yjrh7I32yGeFyvtc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.4191349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=Ql27u%2FaGwmunDXHzR6rW2ZL36M5ew0JzXu8JukgTirw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.419223Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A07Z&se=2024-10-16T06%3A45%3A07Z&sr=c&sp=rl&sig=QlAmkjdtu90ZfPubb7JVqexoHQ0odzO6%2BqvFTUSM6BQ%3D","expireDateTime":"2024-10-16T06:45:07.4193003Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=L7AonpWpq1aU4heHeFmygv3ZzWJ2lXg8RtXNkFihqN0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9195592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=g90vXBNWJd95RqAYg%2FpIPcylBu5D7HA5Wlz2vm1vXHM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:05:57.9190972Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=AlXiDGZzkgzbLNrCPGAgU6JEvFx3qit0xhiKOqomlk8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9197235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=RtS343FP1UPYuzGhxwVkj2o4ciDFEwrGRnqBtlBAjEs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9199409Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A05%3A57Z&sr=b&sp=r&sig=cBlZI2TISUmGwOIJbOdhcX05YoHf1rFE%2BfMSd0tJ2%2Bg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:05:57.9201454Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A05%3A57Z&se=2024-11-06T11%3A05%3A57Z&sr=c&sp=rl&sig=sZr6InSAv55%2B6xfSCml%2BgdH7At%2BbIAgsuo8uAsEGHA4%3D","expireDateTime":"2024-11-06T11:05:57.9203435Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1600,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:07 GMT + - Wed, 06 Nov 2024 10:05:58 GMT mise-correlation-id: - - ea3a040e-8484-4289-a70a-4fac8b604535 + - 92f0c752-978c-4314-8d53-1f03766fce2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054507Z-15484bdf4576j5mtr8k4ftgbd400000002v00000000058cu + - 20241106T100557Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bbxh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=aLQC7yfOljRGS0b3gO1vpWyJIDWoXpgOQhlF93myo6M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.8020774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=c0IbrhrpwFLP%2F2kWKBaKMjpxUOYwcL%2FSFIPzQDEECOo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:12.8018362Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=YkQopAKIfvVOYzjjaiyDiMPXOeHdydpKPunGfdy0XZ8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.8021465Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=cY9oLGLIjOpQIzabhitpJ4iz24%2BCVrhNwAJx0%2FB5Rtw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.8022158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A12Z&sr=b&sp=r&sig=BlP%2FUJpdgtbjYrPz%2BeBrVQTYC8j9T18wAru64ylb7n0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:12.8022881Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A12Z&se=2024-10-16T06%3A45%3A12Z&sr=c&sp=rl&sig=aGh6wUFr6mREvUYvimngxuPzaOL%2BUAQkGHv%2F7iqsFB0%3D","expireDateTime":"2024-10-16T06:45:12.8023533Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=6FkFOmTc2Gjq%2FAAll99EuC%2BmhXv3d5GiFi%2BqYEwZYVU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2605491Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=PGSCXmEHPWQsEtSesndo9fiaifg7P1B2sioKcwom%2Fv8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:03.2600728Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=Tn4VlRSzD8k%2B8I1rhBcgvRSS7p6wuSXK3BPFLmqfV%2Bo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2607447Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=6i8TDmspgjREPLdu3ZQI0ojDNJAuK6iY62X0I6Qi0Rc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2609357Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A03Z&sr=b&sp=r&sig=LDnfbhJD1BgMW5voSMqOCncAVsVg7XkY51Dy5urYss4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:03.2611263Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A03Z&se=2024-11-06T11%3A06%3A03Z&sr=c&sp=rl&sig=EYIVOYgL1b2FIXUaODY%2B2ndVvpOl8y5Yj0krpmod4pY%3D","expireDateTime":"2024-11-06T11:06:03.261309Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1601,17 @@ interactions: connection: - keep-alive content-length: - - '4912' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:12 GMT + - Wed, 06 Nov 2024 10:06:03 GMT mise-correlation-id: - - f1a91859-6db1-40d8-ac35-501e99b51ef5 + - 2cd32532-29cf-4f23-884f-9e228e51f53d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054512Z-18489d46dccp2df8e3m20gzz8w00000007yg0000000011c5 + - 20241106T100603Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bc4v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=%2F7XM8%2F3NhSOiWZmrFy7ZkqxiSl1VE%2BdqKYENxnUP7QA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.1847751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=r8ZAUhyyIogskqqP63Nys346R8OQt9ocKmYNp%2FjOgOU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:18.1844944Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=uUjwdp0b5cxDShp8ah8OGGvYKHu8xLP4pdMRhpat%2FIA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.1848735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=cgZJNGMxm50YQR2X9w0pl%2BP%2F7N4SYW%2BcrSHwNy6%2FhP4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.1849709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=9QuH2K5QcLBBCeIGV%2BIys2zzUFg4mTJx4qpGIYWP%2FN4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.1850647Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A18Z&se=2024-10-16T06%3A45%3A18Z&sr=c&sp=rl&sig=3OTp3j6phnIfzdn%2FRMtBcgG5qWnDm972ViWoAHWFpQc%3D","expireDateTime":"2024-10-16T06:45:18.1851578Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=4a2AfXvjM5LSZu%2BJt7dehH56YjUpEqyHCPbwvNAYDrM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5822026Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=itq6Pp%2BuN7%2BnVDK%2BREKJ5ueORE5MSeqG8ZXleCGh458%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:08.581706Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=FAmlHXz77PxJAfW97oHvwAMFoAx0IGFuoucLmhpBV5c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5823962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=g1UyoABg3i5YhEmP8TKvhYEQQHuXdtKwrA0n2VtAftY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5825939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A08Z&sr=b&sp=r&sig=9fSc0AS0dWBr0hoH2M0%2FsdsBNHFjpxvpPLKYY9Nyu%2B0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:08.5827968Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A08Z&se=2024-11-06T11%3A06%3A08Z&sr=c&sp=rl&sig=anmeO9PFe%2F%2FBkYb3zAjXoXac%2FZxTK%2B8vfL1u69ldFuk%3D","expireDateTime":"2024-11-06T11:06:08.5829866Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:05:25.754Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1643,17 @@ interactions: connection: - keep-alive content-length: - - '4920' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:18 GMT + - Wed, 06 Nov 2024 10:06:08 GMT mise-correlation-id: - - 9caa99c5-0635-49e0-83cb-1f18a76b47db + - 9ef4b748-f713-443f-887c-0bc4a09f86e6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054517Z-166cf497cd48w6x2zuxa69f51n00000007x000000000enhv + - 20241106T100608Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcbp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=GdS56Z%2FB1GFsnEn%2FOioNHckHxuIblQqd0uoGNWRHdKw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.5864671Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=C2YgzEGfD%2BLALv%2BJpE51u8Yv05wMH%2FKfxZei%2FQ9M%2F2k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:23.5861878Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=5DwPGDxHvVwVNr1rpHscXx6whRHQKYYTVn3hf4QCN54%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.5865634Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=sHzQg8GABzcUHCsH9%2FOmNyfrR9%2FYoUev%2FhBgh9kip%2FQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.5866711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=3WaZwEUrfSHhHwCbWTSNI0bnLE0%2B%2BsDAJqg315NRRs0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.5867523Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A23Z&se=2024-10-16T06%3A45%3A23Z&sr=c&sp=rl&sig=4utzQ%2BiTd%2FBMXQWPwEm%2FXG7RNBzzz%2FFLDu%2FHwVJ0Dnk%3D","expireDateTime":"2024-10-16T06:45:23.5868323Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:35.644Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=eqNhrvkNIrGmWEm%2FyIrWPSzkwsgEm3s%2BMxVye%2FMxH8k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.8979343Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=OCTjylq5y7TuHordhxQvXCMvW%2Bz6rtNoICsiFYGyVks%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:13.8975998Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=TbNxQ4877G%2B4XaiHoHKqfTAghRRUkXRUk4V56a1gQ%2Fs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.898027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=dzQOF9m80HDaUd3HqX%2ByhlxMcADBHN3oJM6v%2BwcwBXw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.8981248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A13Z&sr=b&sp=r&sig=m%2BLF1Xbxzvdo5GfPy5EW9PpXwuUM7ZOuUNru7yjvYTo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:13.8982153Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A13Z&se=2024-11-06T11%3A06%3A13Z&sr=c&sp=rl&sig=6V0OimtJdrSrKapcQiCPN%2FfCaQQQyH9t6KntXgDrIYo%3D","expireDateTime":"2024-11-06T11:06:13.8983046Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:10.007Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '4932' + - '4913' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:23 GMT + - Wed, 06 Nov 2024 10:06:14 GMT mise-correlation-id: - - a24de256-c9b5-47e9-b037-cdcf142b30dc + - 74f2b177-68ac-4218-8319-9b6f6caaf1a5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054523Z-15484bdf45792m2k6spfmpcgcc00000002n000000000c26h + - 20241106T100613Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcmk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=pXbcMsAKCFqYKruQ3cKxkUOIRAb9zCm7j0yF7zuJlY0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.9349942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=0icj%2F3Hjaorad6LxMoXzjxJG4lq6jyAvV7vqKPDIB5Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:28.9347475Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=fpxQLx86xYAsRqzBTFs6qie%2FrzbZykWAPtte3ZoOJW8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.9350635Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=1x2%2FcA9wvtpRxVpzUi5ikxriwTwHZR2capbuJF%2Bfclk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.935129Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=WAUWqBrazato1chpa6HL%2BI1RRX3y0aGagEbWuyE%2BrQw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.9351932Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A28Z&se=2024-10-16T06%3A45%3A28Z&sr=c&sp=rl&sig=OOuVDRBHV%2FRxX82V0cy8YAp79BCdHXpbzmaa55qsvaw%3D","expireDateTime":"2024-10-16T06:45:28.9352563Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:24.517Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=GJ4FFl6%2BHguryAZv0CPobI3IcriLk%2F87QFzQgDnz%2F3M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.22632Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=ZtQRgsheTY1K4Y%2BCimb2rBGY8hHUN9nX8QG2VCUTqkU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:19.2260371Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=uofaEZIJ%2BppJlTIGdqZGY0tC%2BfzqbyMTwuMmf63Oo5k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.2264168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=2WcBX6Whwr%2FVN5LrO839uR8pCYnIQRTgMdw5dk4X0ok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.226507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A19Z&sr=b&sp=r&sig=%2BlJkG4xBe0LTJBXImv%2FlVMszU39DQXFW8zK318GNzHM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:19.2266082Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A19Z&se=2024-11-06T11%3A06%3A19Z&sr=c&sp=rl&sig=0nGRpzJIWpltG6%2FwpKTp1Ltwan%2FxO3kxW%2F%2FLZZKkOEw%3D","expireDateTime":"2024-11-06T11:06:19.2267023Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4908' + - '4915' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:28 GMT + - Wed, 06 Nov 2024 10:06:19 GMT mise-correlation-id: - - 6dd7280e-77e9-4828-86d7-4239a560f695 + - 0d57b0fa-5d10-4369-b848-aeadc76320d9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054528Z-166cf497cd4q86sbftw3zaubkw000000080000000000byv1 + - 20241106T100619Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcth x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=h0l%2BbwZAAa%2Fn8bFkqm%2B4089KWoKJzccznW5zrQqlXfE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2539224Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=O6z%2BzwYar2zzEb6yMCcfZ4TcDRKrBtXVbTrggBrwDjw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:34.253315Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=iP9WiLzWvHJuILBFdYzEnepiwCp1hn%2FVn5SMqrylt4Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2540974Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=EtJ9dAjCzVNGhAR5Hv6hsT0yq0OepJPc7mcQazstak4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2542231Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=%2F7ZG2YuMw%2FK%2BnvjAAQmz6lTgUcjXICsVj1M8eA3HJhs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.2543569Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A34Z&se=2024-10-16T06%3A45%3A34Z&sr=c&sp=rl&sig=sudPiiRoH3OJzOtkRFbxa%2FUtYv5XGRqRl%2BP%2BDBG1QiM%3D","expireDateTime":"2024-10-16T06:45:34.2544966Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=hApdguPZkqRMei2euNO4o%2B2O%2FAv8b%2BjeVE9Tl5HnICY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5492446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=2YI5gBMaWDD%2FVmtqBxPgf3TyaaA4z6JRklE2ljUCbNM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:24.5487721Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=MWD3CpIe%2F6iNrWoZXVAu%2BuNjv57TrBVbvFkieS6%2F0sA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5494438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=S19rQGW5J6Oiqc4of2Yh7kPaNkQvrDb7qFT2aWJLBX8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5496205Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A24Z&sr=b&sp=r&sig=MCd8WreymotNYmF5P0s%2BOHmjyIThQxtuBIZS8VaTqqg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:24.5497964Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A24Z&se=2024-11-06T11%3A06%3A24Z&sr=c&sp=rl&sig=T7Svelx3KslKP%2Ftum93e8Kxy8pv41NuA4teeS3DJVvk%3D","expireDateTime":"2024-11-06T11:06:24.5499964Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '4914' + - '4910' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:34 GMT + - Wed, 06 Nov 2024 10:06:24 GMT mise-correlation-id: - - adfa7c61-c378-427a-b4f0-a6877a46b1b6 + - 7a83178c-716c-4754-a7f3-b4710f0400c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054534Z-17f5d849667pkml2n4g8rmfnnc0000000600000000001d9n + - 20241106T100624Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bcz9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=kjBlHX91ANmiGKFQoybDFbufumz%2BgKmbjsYkfDQPOMM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.5955375Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=lOJ0yPkFMkjCjrdlKLR5Yo1XBkqLuy1Qbfw%2FVHyhb6U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:39.5952565Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=lk6l1n7XX9puink0xn1fXLmkQQYna1KkJYxqiogSaA0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.5956221Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=bwBDJ43HiV1RXnBy4cvUcgCTppXRd9RfRSGupCX2TLs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.5957171Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=AxvDBLxUmQuwhmZS%2BA5Zfa34XA0cj4YqQvnYaQbKTy8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.595799Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A39Z&se=2024-10-16T06%3A45%3A39Z&sr=c&sp=rl&sig=V5IFe6NmO%2B65tC%2BWjO7z%2FnTWJcUPElS4bLoa8mW%2F2rE%3D","expireDateTime":"2024-10-16T06:45:39.5958903Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=Re6FhsfYdtnkfvBjDvDgrYBqOwV6qqBpzqgjE3Hjrds%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.9073283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=hmI03k2CLL7PBrwhEHEBwcvEz0dDFh5IDaJy9cqg5%2F0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:29.9070342Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=X4WlB%2FQs6zvoc7%2BelRfJtOApcn5JW2iDy8Noy4HAoHw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.9074275Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=B7utS28ySTS8UA7F7n%2Bu7VfBCnf6Eox0FC8Ou4XZDTg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.9075249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A29Z&sr=b&sp=r&sig=s63q7aMsr99i5OR46ICmoFui2n3M91%2Fv7OwNAFDPz9k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:29.907621Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A29Z&se=2024-11-06T11%3A06%3A29Z&sr=c&sp=rl&sig=EDAQOluse6j5U%2FO3HRrPTVVXXngWviluXHIkmp1kqhc%3D","expireDateTime":"2024-11-06T11:06:29.907724Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1852,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4906' + - '4902' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:39 GMT + - Wed, 06 Nov 2024 10:06:30 GMT mise-correlation-id: - - b7db9748-a144-4a98-aad9-daa4472a713c + - 1220bed8-8c6f-4d6f-a93b-244fe6dec09f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054539Z-166cf497cd4mqn5ksypuy7gvan0000000820000000005xqx + - 20241106T100629Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bd5b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=A5RfWYDAL1iNhv7nqH6g%2FjU1ks0USbEvurGAP6FwpMY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.9146692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=IcgeZK3uAMUnnostaul1TdD3%2B9XdYHB1XzxmKexL%2BqY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:44.9144213Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=Ux5%2FDmlNCehvwrzMikKKrviIU634wa%2FlwgKsP1eNOAw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.9147326Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=%2BFo4Uw%2Bes%2F2fGes%2ByDGQMgmFH%2BfSHlkUvBDmoDR7UtQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.9147945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=Yt%2FzhwpZnWLWiLSfVlPhlNjLA3v6GBk8FuNPgTzNnSc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.9148563Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A44Z&se=2024-10-16T06%3A45%3A44Z&sr=c&sp=rl&sig=Y5SfRFAKKCEruNaIzAb6t7TqXEKoY1CR6wDv44UE5PM%3D","expireDateTime":"2024-10-16T06:45:44.9149164Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=j5Kx8R%2BExpnzlBWfitVZRkOaXLh604fJWJkg381n7Yc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.2465484Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=4MUCA73W%2BUBl6%2BLaQUFB6noinnzBUgONhuXc%2B4erakI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:35.2462077Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=O6G2xgPr5hxfP5bd%2B%2BfvJkLYyMjwvnbOCR1tCWQdG9w%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.2466822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=5CP7DFJLI0Y6%2BldmMLWc2Oe3SAl84lgnhSfkELgIDvI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.2468243Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A35Z&sr=b&sp=r&sig=WdJl9cLjBwbO03%2BzjXBg1Rk8CguBDaSOrFLOmm0Rlco%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:35.246975Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A35Z&se=2024-11-06T11%3A06%3A35Z&sr=c&sp=rl&sig=8pkJLksQu%2Bpo7zavQgpOsTu5AdrLk9HUqsuYd64v3i4%3D","expireDateTime":"2024-11-06T11:06:35.2470934Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1894,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4915' + - '4909' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:44 GMT + - Wed, 06 Nov 2024 10:06:35 GMT mise-correlation-id: - - b3396744-4520-4b50-b3ba-40476964d1ba + - 35602041-833e-40af-b78e-ef6129eefc69 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054544Z-166cf497cd4txcnh6qkkc4ez8n00000008300000000004b1 + - 20241106T100635Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdba x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1922,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=vhDnV%2BeV73X2C6DO6xMt9bB3%2BuFC%2B1RKxfN5Eht09Rc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.1023279Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=t8OJ%2FgkxDxC56XkRyhxMBf%2FguEqfXvAEsGuMF8JLrSk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:50.1018955Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=7qmd13hCBLQezPjnJ35HBVK3q1h5oieLbD0WfAvfUb4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.1024641Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=H%2Br74SeeowVju2ZPKUadNs8y9E6372DygT6zBn%2Bspuk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.1026316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=BgvLM8ntyORyIRYr8FghyPbUiBfU9BNFPY8l7yzIRb0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.1027711Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A50Z&se=2024-10-16T06%3A45%3A50Z&sr=c&sp=rl&sig=yY18z%2Fl7VngbqsF2%2BlugHZw2gy6x4nGF3hl5Xryn0x8%3D","expireDateTime":"2024-10-16T06:45:50.1029081Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=UeFuBbUG7dnlN%2BJE0ewLx06nGhHrhWUaS1QIVkPqFA8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.575755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=EC%2FxUHQBRC850sXDFJVX4uGBI39QnWJYq0cBcYIltT4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:40.5750066Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=OfxPMuSoPyKacJudUDFyg4l5PmYmvgCfMpDT0yXnD8k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.5760602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=m9DDBK6mIILU9sCeekv%2BAsPjbTe1SeZN1aQTAysT2RY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.5764056Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A40Z&sr=b&sp=r&sig=lLi4XbDgylNHFpw2Uny11WIP14ph%2BSgDE9FiTV1OKns%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:40.5767289Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A40Z&se=2024-11-06T11%3A06%3A40Z&sr=c&sp=rl&sig=TT%2F4leT30MMpB5oosn0r6HgIrpUF5AjcdsHcSJSa6bY%3D","expireDateTime":"2024-11-06T11:06:40.5778947Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1936,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:50 GMT + - Wed, 06 Nov 2024 10:06:40 GMT mise-correlation-id: - - 2ef8a068-4505-42ba-bec7-e49e07ce717d + - 7da5831f-db3d-4a58-9ff1-9d3207815266 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054550Z-166cf497cd45mnb2hc29k63vhc00000007sg000000008vrg + - 20241106T100640Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdhu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=MN2qGkyfmpw%2Fn5bdz%2BbNwFWsi3F8skvKUwX14yrZt88%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4761794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=IGHLpmRtW6oaVz6f0eIPzzjAUQr7G3Qo8Mbif6Xmcac%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:55.4758945Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=e7mMbHSd13eD2aMCw1NuNXfgqrgLZ0aWXZCGTv45I7c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4762812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=9okLC3u8ubTfgmc%2FHSy9ee2a0su9uz1bYpGFJHd19Vc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4763723Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=pjXbfXTUb6eRUwhyHFHii3Kk%2BPrHixutvN%2F9iC3W5V0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4764721Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A55Z&se=2024-10-16T06%3A45%3A55Z&sr=c&sp=rl&sig=afEDK%2FetWffT24iR8tcYez90XgfRI5mbRYkud13Pw3o%3D","expireDateTime":"2024-10-16T06:45:55.476568Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=sZlvveyfFp9OA7ah3DbPepNYedowcppep5ECQkEyxEg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.957084Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=FU5r09JOXdvzRtLkfiTFFEWPNzs7gdfBpTb5HIh89lc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:45.9564449Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=%2FFoWpoiyO0eaG%2Bg7K3jEc94%2BuUjwj0azAOBc5UVpkbA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.9572658Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=u7ifrsBnYC6PQ11E%2FjfFWTCo%2FjCXN9FHoPdUK1ZZ8fM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.9574345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A45Z&sr=b&sp=r&sig=AGijn%2F9dtNe4HDrFEXtwaxYo38rATzIz3jvLvsLEUa0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:45.957615Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A45Z&se=2024-11-06T11%3A06%3A45Z&sr=c&sp=rl&sig=mLApcUwvbIQsuqSku80oCNB4mQVyKZ%2Bj%2FT%2FlD%2FpvXS4%3D","expireDateTime":"2024-11-06T11:06:45.9577786Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4910' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:55 GMT + - Wed, 06 Nov 2024 10:06:46 GMT mise-correlation-id: - - c49ab576-e93b-4500-bdae-5f0bf7358b09 + - ab7b3d2d-ea22-42e4-8d24-80672c0e0c79 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054555Z-15484bdf4575xp6m65z1ff0ptn000000024g00000000ndcb + - 20241106T100645Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdrk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=iNWBJDSH3wCRoWJUk1Q7VwWRA1ypWerdBfl1SS2BCEU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.8369653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=%2Bxaqbo1y18R4kkYLv4M3z4fay0Gd0w7bPLow2vNQA7c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:00.8366999Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=o5aBguYWhVIJ%2FmGdyEteeGf2SZYkOq8VorsQJ8UqJYc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.837052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=r0g57DSnK4EWh60dnUwANYID66wRfnGqYcD%2B53TJgo8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.8371354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=yzSN5gI0GaIztnHvTstbZLFQY4XIb6h0xBnKX1cvYdc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.8372285Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A00Z&se=2024-10-16T06%3A46%3A00Z&sr=c&sp=rl&sig=8P2lC1I5jik%2BVW%2BRfc49h4du8bq0vEE2SAMyfF8Hvzo%3D","expireDateTime":"2024-10-16T06:46:00.8373058Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=OO2BenBn%2BWrTgp%2FSHmcNiC%2Flhs8wllqGsgoop62cb5Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2765207Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=vu6EIa%2BfnOUqd1d2gev3AmolzkQdwn8BqQI8Hw7HBDo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:51.2763101Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=ARLKS%2BMyHgZzHY4HbmHzKJeWgNwBrfVH2NjCfi0uNHw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2765727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=8874IhshHBU4B0tf5vb2%2FPI5LuYuhjC5Y7FBlX3OObw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2766236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A51Z&sr=b&sp=r&sig=Ibhnj1dHgof4z9ZinrC1ru4rw68aP8lyLeUMYQsij8k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:51.2766719Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A51Z&se=2024-11-06T11%3A06%3A51Z&sr=c&sp=rl&sig=Z42WwNmqbP2DhnoGhRZdrDmx66Whc3OqOmO%2FMUOrFTU%3D","expireDateTime":"2024-11-06T11:06:51.2767189Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1979,17 @@ interactions: connection: - keep-alive content-length: - - '4902' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:00 GMT + - Wed, 06 Nov 2024 10:06:51 GMT mise-correlation-id: - - 0c927249-edcb-4938-b433-cad4cbabf376 + - e95bf5f6-79f3-4807-aa0d-77a91ef19772 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054600Z-166cf497cd4ljj2qr0tamq52u000000007t000000000cv35 + - 20241106T100651Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bdyf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=FDAmDxu%2FHUYjtWTSPYXL76M3LQnXw%2B9D49rq7SBkofA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.1010537Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=%2BuavM3IY%2F1HV%2Buc9bTeCye1rdgDUuopMLtdhW7E98A0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:06.1007625Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=hk9X59YH47f2Fi85y7k6vXpfmWLVdXVR2VUO%2BEoXork%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.1011523Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=WgOPte%2BpJ5%2Fk1esqUlOyyZKNe%2F53KTiaFuEuTOmA8ok%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.1012517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=sHg2TkTGYX5Ro5NBXD7wFmh%2BMbeGHnHgsqTKJ2mQLnI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.1013419Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A06Z&se=2024-10-16T06%3A46%3A06Z&sr=c&sp=rl&sig=Zgpzliz0%2FMXlDzULTpf7ecDS%2Ftt6oXgD0qkZOTZQ6rA%3D","expireDateTime":"2024-10-16T06:46:06.1014215Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=GJvz4M%2BK6mm%2FV2D%2FSDvEtCKIzwwkrkAhxQsGB%2BPKCtM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.683475Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=LxQxsoEw1YMk1zwTMDmq2GNVI8pioC2gk7QCLDmH%2FDo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:06:56.6828904Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=0mPhagBvt1o1Xp1B7bGlQASzk8zXg7OXkRrEuUEyumg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.6838705Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=w8qwhYhBwFmWBxaTg6%2FbOqXSlJK00XCAZKP563vp8Gk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.684047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A06%3A56Z&sr=b&sp=r&sig=8UPa68xVlgJk2nWCSWp%2BhXlNBOhwVWS%2F9xake28pa4Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:06:56.6842041Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A06%3A56Z&se=2024-11-06T11%3A06%3A56Z&sr=c&sp=rl&sig=uBp2o9zUW4fZx3wQJdTnCjjaPiyaTPMiWfZhTAHemCY%3D","expireDateTime":"2024-11-06T11:06:56.6843298Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4917' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:06 GMT + - Wed, 06 Nov 2024 10:06:56 GMT mise-correlation-id: - - 2cc34856-1a22-4ddd-9295-a1a147301d5f + - efc66b93-f010-47c1-bfcf-85e8f319adeb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054605Z-166cf497cd4dfx7788bvx3ssu800000007r000000000cse1 + - 20241106T100656Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000be52 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=OcUPMq7shJaIAoKcuoQSFoPvvl%2Fp2xdo%2FxujXd94LyI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.4443472Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=5WMfGPSMBhRPPOypPWKOgpbkdoUc8regFsMrfDVbRSA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:11.4440779Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=euQaM4c7skijsldZDWzjxsmpCMAee%2B0dyLHkmmEh2DE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.4444286Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=Wl84%2F5zzN2s4IsWcOA4kPHsUXbYKylRJYCcTRs%2FDz2I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.4445248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=no6BDDzqSuSPkUpgPwRh4s1q31rG257p0cs6uNwws10%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.4446209Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A11Z&se=2024-10-16T06%3A46%3A11Z&sr=c&sp=rl&sig=PWU%2Bl12us5jiNcY2NphYJaIvHOaS2NIJaw0ChKxH8KY%3D","expireDateTime":"2024-10-16T06:46:11.4447086Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=hoM1abhUXtZ3BrNlqiMY6NV6%2ByNQLpCh0S9UapZbGso%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3783681Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=Wi5AJfC%2B%2BlRtQg%2BnAp3EVRlsKBBdwFlbV0bNHT%2B1%2FAU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:02.3776179Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=A6nwiFXSKsr5XmDnTF09FtFM3wemqxDVDFi78Fh%2Fcgg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3786761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=gFHmP99ohOXWiN5nnba50eVc2CGn0WUZh1ztNVINHhY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3789716Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A02Z&sr=b&sp=r&sig=QTSNl7BmiStevZ8HRHdNovJo8JcF2u7ItsTdh9ao%2FlU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:02.3792727Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A02Z&se=2024-11-06T11%3A07%3A02Z&sr=c&sp=rl&sig=rbyKrTH5MxD%2BVO%2FztFOXsZ7VN1lpgj4AwEW7wt1tIqM%3D","expireDateTime":"2024-11-06T11:07:02.3795645Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4912' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:11 GMT + - Wed, 06 Nov 2024 10:07:02 GMT mise-correlation-id: - - a1909919-d882-4719-a361-393e12d06984 + - 1688f070-74a0-4cfc-8552-5b58e59bb99c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054611Z-166cf497cd47w9bdc501r87meg00000004k00000000013z6 + - 20241106T100702Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000becc x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=i0wkABuFEjd39VFTiLtM6gCNXYn6zVuEuiU3MeIDf10%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.8641892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=SAVkj2ESTlOdtdlhiwtR8VYNjY%2FUJ1CB8KP6CqOBRrM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:16.8638839Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=mWhIcwRGZwd9v86whpZEThkjM91bu4piby11%2B2AMm5s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.8642881Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=tp0olFBF8P7zSxi%2Bzgw6N45pAX%2B%2FlTNF2Jsrt%2BzqcKw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.8643793Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=5Ou1UL%2FTcKtRXJ7jxYV6KnSPJVTFtNRtkBsY6%2Fw9x7s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.864466Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A16Z&se=2024-10-16T06%3A46%3A16Z&sr=c&sp=rl&sig=rKOorEnbsj1Xq%2Fp9EwzBX7EkKuGNVokgxb49l6mJE8g%3D","expireDateTime":"2024-10-16T06:46:16.8645476Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=oWN9s55tDwVzTTSZ7rcNvT2%2BzRmlSeLjsCfE1ZF8F8g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7346596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=E8GB4bJgvcN1p4rBkp2Y%2BQwGThGx34aeROhvZYe2XFA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:07.7343506Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=urmgXSacyGxgknHnhfe%2BWK0Q8Ul06g%2BvU8%2BDVsQvi%2Fk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7347794Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=%2BF79G3klj8CppPk5J7YjmRNPtCtElbb1ekkHDeOSfYc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7348885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A07Z&sr=b&sp=r&sig=W%2BMZDsog%2BlRXbGzV2%2FZ3E%2F0o2xISxMcPcb5zo19ZAAA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:07.7349838Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A07Z&se=2024-11-06T11%3A07%3A07Z&sr=c&sp=rl&sig=eTsaAHwJ53NugSdbyR3WLZuo%2BVVVPlXPLPR90HCnLXc%3D","expireDateTime":"2024-11-06T11:07:07.7350771Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2146,17 +2105,17 @@ interactions: connection: - keep-alive content-length: - - '4910' + - '4916' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:16 GMT + - Wed, 06 Nov 2024 10:07:07 GMT mise-correlation-id: - - 92d47e36-181e-4df3-9ad4-0b3193e1caf6 + - d629e677-6b3a-45da-859d-af1c2541b4e9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054616Z-18489d46dccfp7rz6a82yt7pbw00000007ug00000000ggd1 + - 20241106T100707Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bek7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=JNtEByeUJxwZOD1cBirBvGyTykRwtGzcemZA9LcQcXY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.236847Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=Toc0WAnLA1TnyP0U2o4XCzHkyJS1c7WdtoRIWzGv5hc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:22.2365551Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=x2qXr3UaD%2BJv1s9HHwt89m4gBWh5N8ZKQqx6dM%2FvELE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.236933Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=c%2FM6NYFHQtnaAS%2BCxiRXamJizPh6gxSP4ehd1FFaWSY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.2370261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=YdW2gxTTfo8M%2BojrfTDnHZahImIhHmCq%2FtDeCvynghY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.2371134Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A22Z&se=2024-10-16T06%3A46%3A22Z&sr=c&sp=rl&sig=fFTaw619KGdLweEwUoYk4edBYWDTJhhas%2Fn%2BBlBlP%2B8%3D","expireDateTime":"2024-10-16T06:46:22.2371901Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=oaS8rC5bFkVTfL33VvI4Ogg0MxYYlzBK0EPv2%2B3qv1A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0711232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=thzFITWUzIRsj5DoWhl3H5woTSKtS01sFcu0GrHWD2Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:13.0708375Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=AM9HKGHxIKcKUrDXSpJWyjJUWFp59Tgp0ICRx4uP%2Bhw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0712142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=5ILwgLqqfkchStkNZsasH5yAR2C8lOpO6jvYC7jlDyo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0713032Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A13Z&sr=b&sp=r&sig=ayjcnwF8VDL%2FUHvs%2FgNkz6sUhO4EKmmTUm%2FrPIIzjcQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:13.0713936Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A13Z&se=2024-11-06T11%3A07%3A13Z&sr=c&sp=rl&sig=jSh6r1i1uHEtjT36gFJ6nj0IJuQX27hoSpWSDLMwE7Y%3D","expireDateTime":"2024-11-06T11:07:13.07148Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +2147,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4900' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:22 GMT + - Wed, 06 Nov 2024 10:07:13 GMT mise-correlation-id: - - 1d8bb0db-f54f-4008-aa04-531e92a1634b + - f4734809-90a4-40d1-8f4e-a0d16366fe3f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054621Z-18489d46dccd6w2hyw4dcpanpw00000007vg00000000nqtm + - 20241106T100712Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000besp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=nfgEzfZSiOXs7OfsClH7bDXrhMpemVYwIvMrSMhgCPc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.6347675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=nLU%2FwMydpLAzd5EL1z1VnsKZVrn9%2B3URHcq9SPrEsfc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:27.6343119Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=WDjvOOZNzhFUW9m6zu9I8kwDj1xiywr26LkvTTkltBw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.6349952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=W18E6znhUrCDnMDygIs9KRqAk7q9y1XMXCDf6EaZON0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.6352247Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=KIjP3jsE%2BGK7hGhe9WxpC6htKS9LJz9TuveQD3ZOKZo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.6354077Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A27Z&se=2024-10-16T06%3A46%3A27Z&sr=c&sp=rl&sig=abZUY01cqGiDg%2B5tY6K%2Fhw32g1ZKr9xjm5p0MN4EQ5I%3D","expireDateTime":"2024-10-16T06:46:27.6356085Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=Vtn3A5i4XFiG13PpD437TghNOqdHHVVwe9xEmKevxhY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3989547Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=fBYciIED27uEWaSJHSa4ExGdl8eJbULzItq7I5utKTM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:18.3985395Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=MkI98Fq4I5or1WUPpNp%2BFwgYSjjA9wb8vPNBYAG2Vts%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3991222Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=LCkNKFCVsXO%2BSR5TLVe6nOgB9f5umanux7JGLQQhTD0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3992924Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A18Z&sr=b&sp=r&sig=7FMHhTQFSDh8uJqejFm4K3LFPX9lKcYp6zWBqovYeWw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:18.3994619Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A18Z&se=2024-11-06T11%3A07%3A18Z&sr=c&sp=rl&sig=Uq60oL5BTsNBzKsDjsGaa4hdMwt0lc9sUBuDeUqZ6jg%3D","expireDateTime":"2024-11-06T11:07:18.3996306Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2230,17 +2189,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4896' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:27 GMT + - Wed, 06 Nov 2024 10:07:18 GMT mise-correlation-id: - - 4fffd839-4bfa-4103-a7c9-2fe2e71c2b2f + - 2e46d1f6-03eb-4bd1-9ec1-98d46336e8b1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054627Z-18489d46dcc5trkwxb4ya4w12000000007s000000000ea6m + - 20241106T100718Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bezv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=S4PSjiDssIuxY4zNwp0lZcIGh43RqMoOCP%2Bcs0lKmcY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.0018239Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=OwO2Hl1dmuP%2BVWWyPUV%2B1kCVkZ%2B3qlqXgW0y%2FM0arJc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:33.0015821Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=75oP5ul7e%2FMgrd8tQQHzkJNES7Sy32OG7d0umSEzauc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.0019147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=1VlFO5WAWCxfJLv2q3g8OTj0jjv5%2BG6R5P9Q%2B7MjUgs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.0020016Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A33Z&sr=b&sp=r&sig=7AAZqj325mNg505k%2BvF4dfhIglrRDD7qxxlRcPDfVmg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:33.0021138Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A33Z&se=2024-10-16T06%3A46%3A33Z&sr=c&sp=rl&sig=SvL%2FjHBrUR%2FtqpwFIQewohq9M8VL0Nfu3HLpFDvk8Ro%3D","expireDateTime":"2024-10-16T06:46:33.0022042Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=q13Ms70fbjR%2Bh2dhfelS6rbw55LKQxerGecZk3PGzWA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.721365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=N7urrMPF%2FYc%2BqS6kf95xS61gPiZe3fhOX%2B5YhJcHUP4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:23.7203968Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=1Vap9UnhR9RPH8uSfDjd8NEPd5Ck1PvaTNy2Wd86Sb0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.721675Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=AJ%2F8E6PbDPWS1Bt2SR%2FefLlUH5XbLpOXL6e%2FGB4JBKc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.7219651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A23Z&sr=b&sp=r&sig=oW9mNqfSmISy1Aj7gIQPfFvGESjWXymI%2F42HUmDJaPI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:23.722291Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A23Z&se=2024-11-06T11%3A07%3A23Z&sr=c&sp=rl&sig=Fdw38fFXISvhjEs3zfyaZhetrNdut%2FF6U0qYyJkGyN4%3D","expireDateTime":"2024-11-06T11:07:23.7225829Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2272,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4915' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:32 GMT + - Wed, 06 Nov 2024 10:07:23 GMT mise-correlation-id: - - 69c4072d-cb3f-410f-90a3-e34675150ff6 + - 7c7d58bb-43b3-43d4-8a9c-1f21936ae4dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054632Z-166cf497cd48w6x2zuxa69f51n00000007z0000000009ncn + - 20241106T100723Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bf87 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=tYPY1OyXUG415pUuS4DsPD2s7sAQs1%2FUkjbQ6XbCBCA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.3590814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=2XbHPj7C1oaTtLCRuT2xVy6InW4VpeEDoeAx1l7Kjy4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:38.3588494Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=ozYaIRsAN2WZqyNNUCyX8ziO64zAnbKMQuieSilf1io%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.359172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=n86eMBC4aLXMjY5ZnA0JsLej3Fx9b9fDexmAmn2poNQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.3592676Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=wrjmM%2FbQAZ%2FaXZPog6WljSa3DsdzrtKa86PIJ0H7RuA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.3593628Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A38Z&se=2024-10-16T06%3A46%3A38Z&sr=c&sp=rl&sig=AblJ8qayIQTY%2BU9Nw7qgkVXx%2F3SBt9MjFFn%2FROizFTg%3D","expireDateTime":"2024-10-16T06:46:38.3594582Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=Os5wFND8NeZsIDlQy9jfBcG2k0%2FP65girS1DbLmlGd4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0424874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=mYWKcQUGF%2F12mEk9F9vu0oXwpqnxLsEq3UN11MoOJkE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:29.0419964Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=CGPbHuZ%2FEMAKn%2BXsTYRMQXpQsbVX8ZhvM2uzKGtUdzs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0426027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=YGQXbEfM5RFjdNS4%2Fp7kDagbmGdyjVdTgBCC3jnTc28%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0428109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A29Z&sr=b&sp=r&sig=4Z0NNzqBMjLvk51ad%2Be41rb4T5rLHJwIKFPuQmNS68A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:29.0429175Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A29Z&se=2024-11-06T11%3A07%3A29Z&sr=c&sp=rl&sig=WRfEouQirwsGQfde7etOh2G%2Ff77sUCZqZvyvByfknBQ%3D","expireDateTime":"2024-11-06T11:07:29.0430788Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2314,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:38 GMT + - Wed, 06 Nov 2024 10:07:29 GMT mise-correlation-id: - - 82bfb2d5-aaa3-4892-89d0-09c008fbbca8 + - a8c1b139-c501-4b88-9223-cb095c88fb3d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054638Z-166cf497cd4xh8zq4d721105qg00000007y00000000034a8 + - 20241106T100728Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bfhm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2342,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=%2FiHJfhr5EE7DosOUfLx7Ob0iqjcq3WQwqU5nE72nhbs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.7281803Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=nh7HKqm2RyO1axPR6UwyNFvCINgHDC%2FkyUXrTOzBvwY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:43.7279047Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=ZDf0HLU0v07tFyxJQO86Tm%2BI4ZUHCfJXbWLgwzhJlMI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.7282627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=I4HHbDL%2FNIQsxtVo3Z25Dpx9ngDB4AFMpbGfBuNEXA8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.7283547Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=8ckeFwm80ooPqGOQi1Cwp9C%2B8vHJ2XcapcEXRBZ%2BsY8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.7284401Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A43Z&se=2024-10-16T06%3A46%3A43Z&sr=c&sp=rl&sig=TruSfZp6%2BU2%2BeDsGdyv4zbAjTM0%2Fxq5Pa0eGd43yN7o%3D","expireDateTime":"2024-10-16T06:46:43.7285168Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=ivDsF6AWc%2F4TBIywhheMXM6IyAgQfXrQWylVNQQ02Y8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3692091Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=FM8nHiUFelegInRULoRcYL9cgHZVgBgEjZMZ3uycNB0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:34.3683573Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=gDsJIRw4oQl7LEJimzbHCTVZ5mfJlyY6aCRnTgXB9jQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3695652Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=jZkXZ3WPvyqqNq3P8RI%2Ftkqy%2FSO%2F3VtpANHwfFYorgo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3697454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A34Z&sr=b&sp=r&sig=AWMxLqbTd8%2BOolc%2FxxIZ5OrWiFRAlBYERwb09nvjZwk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:34.3700779Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A34Z&se=2024-11-06T11%3A07%3A34Z&sr=c&sp=rl&sig=dcPqzcv7azwVHjg4OXUhcqDN0fVfE4JyfpCRmXOTCuo%3D","expireDateTime":"2024-11-06T11:07:34.3703601Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2356,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4904' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:43 GMT + - Wed, 06 Nov 2024 10:07:34 GMT mise-correlation-id: - - a46f21d6-f4cf-4b64-9e96-d8192ef24daf + - a0520f85-f004-4535-9729-e3b2e83cc5ae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054643Z-18489d46dccj85r8e2f8g29m28000000080g00000000bznn + - 20241106T100734Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bfvw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=u5ECMmhd7g65zGX6bwJxynVbe0Wm%2Bp6vuab8pCza4DU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0767536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=rpdTkor9B1m45tIzeFCWDe25CGCLktNWprwlx4cCJd8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:49.0763443Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=eEdbEYEVfkowOtSLSxVQLaHRqEJTu5gMNSJwH%2Bnh7m0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0769368Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=T17zhUVrQ2zMTgZnLt1L3e2w7Js5KW3g9zpAtWGk%2Fo4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0771878Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A49Z&sr=b&sp=r&sig=VjubIpcB4UKOtHlGoZSGSeDfpAOoAE8erXGDYTwz7z8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:49.0773208Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A49Z&se=2024-10-16T06%3A46%3A49Z&sr=c&sp=rl&sig=I51UINKRHz4vt%2FlGjDaR%2BmogX43s4yu6Vne5ujwr0AE%3D","expireDateTime":"2024-10-16T06:46:49.0774582Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=vPvE4CsBQiSCPyTSxh58p4GKtROwNTDuTqib7NN9uuY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7014295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=k5tcpMfsdXTujKoaXv3KsPYb91jKrt1fgJJIw6vAKKc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:39.7008581Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=YdtnqoVLSy19FBX17PDUOpdyzvl3SAcC1BPyDDpDjmU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7016254Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=tG%2FtGZ8RsH2IMr%2FwwHKanHA9EJXSMYRVUFtL%2Fm3Uudk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7018003Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A39Z&sr=b&sp=r&sig=rkFKX6OKSAudgL3JL%2BosSJJFo9LFGxFg54GsSLbZuUc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:39.7019741Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A39Z&se=2024-11-06T11%3A07%3A39Z&sr=c&sp=rl&sig=9TsajwopCpBzWRb1W6e0dmD7JCndDqL7rO8BKKCn8QY%3D","expireDateTime":"2024-11-06T11:07:39.7021457Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2398,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4900' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:49 GMT + - Wed, 06 Nov 2024 10:07:39 GMT mise-correlation-id: - - fcc3ba89-f626-4adf-b008-52581d2d46e8 + - 76083378-fb45-45c8-b2ee-ba6e5a1719d8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054648Z-18489d46dccg5n69wa1d0046r400000007hg000000000cw4 + - 20241106T100739Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bg70 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=vKEOb3e90VZvtxcEyjhz3Hqj789r7%2FHafJfWDXxM6Wg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.4008961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=xhQhhJwLu4vfXxMvwQMh9zfFJrO9Tz82L1xxeF%2FJnQU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:54.4004689Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=1GxUeOrNHfB7SEC76VNdKUBUaZtcZUr9%2FAsjDVCMEJk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.4010669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=q7atfK%2F6zXjIEmJuozJ%2BW81%2FmfvekGzNrFDjEVobtJI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.4012397Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=Rtlc7%2Bxpczlz6wvildRe63grArW%2FGxLW39ovxlTajgs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.4014085Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A54Z&se=2024-10-16T06%3A46%3A54Z&sr=c&sp=rl&sig=LQ5WwwQg37ARelGfYGDGTE30gcmmOAs0McB%2Bw5aUyMY%3D","expireDateTime":"2024-10-16T06:46:54.401578Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=PW8r0ROQlqz3CYd5x7WUd8kz6kNaCq3o0Meysn8OhHY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.0165617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=%2FqODOOcwc8oReNvNSHAf%2B5EVP0kjXVin6Ib9hiQBPj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:45.0161602Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=ZcTxta8069yXgGZRTpdE1JgfiSuH7UuHp4uBOrqxYFk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.0167444Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=6SfwALgZnkFu2X22rYSrSsdxtKyFq1kMi7Oul4lCtTY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.016897Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A45Z&sr=b&sp=r&sig=gO%2Bd5maIyk7JT%2FPicTYXZVbo%2BXqeRE2s7xuuhcHOlRA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:45.0170171Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A45Z&se=2024-11-06T11%3A07%3A45Z&sr=c&sp=rl&sig=FKZs1XBOwYhVn%2BNjCHvC5N77S8%2BAGoB3ADomcBF2r%2F8%3D","expireDateTime":"2024-11-06T11:07:45.017193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4910' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:54 GMT + - Wed, 06 Nov 2024 10:07:45 GMT mise-correlation-id: - - 7b73510c-2612-4837-b082-58f519a582df + - aee5abb5-1f83-46d4-bab8-1278d8e615d0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054654Z-166cf497cd4ljj2qr0tamq52u000000007vg0000000074fk + - 20241106T100744Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bghv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=FSDfSNC%2Bdk7Rc5TTf34Dzfua4wEDagXIbVEw%2BrlPAPU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.758115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=Fxz5JKj063Cqh4am%2BhgUxfSHru0AACCmpdPXBSCgqaw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:59.75774Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=XbB56UBnSy6IGxwa8ZW8%2BJdDMPjvdL7aGLqXxM9vkHA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.7582544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=v%2BS7jiuKL8%2FxrpGqVqh%2FO0TYxRX2mZFPK3MswyJGjKE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.758416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=l5gNUmcFojQmnPla35BYbn%2FRH9MbFOIPabqpc1tvhnY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.7585542Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A59Z&se=2024-10-16T06%3A46%3A59Z&sr=c&sp=rl&sig=UEMcMRcsd4p6PNr2r1vXBJKFK%2BZiUwY%2F%2BxmbEwAcv8M%3D","expireDateTime":"2024-10-16T06:46:59.7586939Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=6YCdKig2hn%2BF%2BKKjkea9SA8agdJlJyADa9W6GEV1b1o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.332892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=5WMhGtMVLu5v%2Biv7pJ0seWtNCdV0XjRCvuCNxUDXbzc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:50.3326427Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=FrJT3DHVw6MAP00LX4gY02EEnL7bd2XVgTJFKPuArIs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.3329494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=kJrqKUu1o3ncs8K%2FNxpKMO4dha6fyjqcvIpYyJINcEU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.3330069Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A50Z&sr=b&sp=r&sig=ebgqQsVQivsj09BOTNsQa%2BKY9GETGV%2FHiKiTuwrM7s4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:50.3330633Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A50Z&se=2024-11-06T11%3A07%3A50Z&sr=c&sp=rl&sig=QoMdhL%2B6PSSavPwNmCdJzWOwV5cPNU9FMWgc2kG1CCM%3D","expireDateTime":"2024-11-06T11:07:50.3331197Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2441,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4905' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:59 GMT + - Wed, 06 Nov 2024 10:07:50 GMT mise-correlation-id: - - 4c1f24a0-05ae-4d47-bc16-406215d26a67 + - 8da1c4ed-e1dc-4c5f-a20d-cb83c00bc57f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054659Z-18489d46dccmwsl5v24n61fa840000000800000000001t0d + - 20241106T100750Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bgv5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=zVn6a%2FDjX0T4zhFZM2gVvIYVqyzCbBtFgHxFg5PIw9Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.1280098Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=ySLYeL%2Bbt%2B6fa2AYDH7vGEXxMnZaL7aojaWpTn0Wffs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:05.1276814Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=PEF79jVb0zj3%2BY5c0FgPvS%2BzGCoUK5dBDLC%2F4l8yvzI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.1280884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=S73a3Nwv%2Bv9FUcvKgsAeorYddOAMB4FzPRwUijvip9A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.1281639Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A05Z&sr=b&sp=r&sig=xx6cPHOhSWZz429wAch5hN4uCEsjc6RwinCsovfDxE0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:05.1282564Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A05Z&se=2024-10-16T06%3A47%3A05Z&sr=c&sp=rl&sig=OhQokOZjkpsNe65vrzswrniyOMkm9TVwe9pz%2FM4eWng%3D","expireDateTime":"2024-10-16T06:47:05.1283393Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=0Hr63efdsAgw3zeJm4Hisq8nVMbblDaalEhNh8k%2B3pY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6470767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=0X3f69f4akJ2L%2F0yL4AhzFUDFY2BWwWxTPlbqEliX24%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:07:55.6465846Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=%2F9p1ZHWG08cU%2BKMvZ4eraFH4sUrMiJM4tOqvvwIIQj0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6472176Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=yAqOIgYP%2BN8JvL8vZt0h3RY9y24WmNYbLV9Vf0qG4J8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6473667Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A07%3A55Z&sr=b&sp=r&sig=yqS9mn2od2%2BOC%2BpU3U3QS6MTmdGXZBwFv%2BEa%2FUyuYPs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:07:55.6475524Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A07%3A55Z&se=2024-11-06T11%3A07%3A55Z&sr=c&sp=rl&sig=ea8XXI%2BWJkyZXKlRE9oldJI%2FWrsYEnmMJmGdF4D22ZY%3D","expireDateTime":"2024-11-06T11:07:55.6476759Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:05 GMT + - Wed, 06 Nov 2024 10:07:55 GMT mise-correlation-id: - - 7600320d-f84f-416a-8887-76766469ac0f + - 828a72a9-78c2-4bc0-a8f5-1d7f56c78878 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054704Z-18489d46dccggs4rh24eyxmvec00000007s000000000hbwe + - 20241106T100755Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bh50 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2511,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=kJL3T0oCeL8nRZ7HJKwn5FXlRTf%2Bp0c3vza6aLJqp98%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.4423983Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=ymlle9%2BIGG18T2QdHrRY5m%2BMx9UWxeuh3pWnZkih8N8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:10.4420894Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=GKnMDYnQLDTWo9c8lg5ZTk6gJNGiivwuxyeOEkMYCyg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.4424829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=sWUsTSTSZo4fXfPOmaZr15fqtZpYNkTPBhdy1EPvCoE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.4426022Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=ASW3pHev5q1oFUsGZC06sqw036nU0mzvVpQxLzMayLY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.4427016Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A10Z&se=2024-10-16T06%3A47%3A10Z&sr=c&sp=rl&sig=IlLF%2BPDUd3ilhbvUxK1ePzCkKWMUxQDpWg3xO3gZZGE%3D","expireDateTime":"2024-10-16T06:47:10.4428027Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=6cUWx10SqLMhCwpnteZoTJl6dxi4HRfStOvdABDOBEo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9614268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=oc9J1%2BXiQveZnS1nlh7h%2B%2BPVFsw%2FRQvM850rw93Sxb4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:00.9611666Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=2FJhvaJL0%2BMkaLIHJcyE6t%2FVwqXmA9VuPM3HkH2eLhI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9615082Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=xAaJ4N334WMp%2BjDtSOxgEAWnPU9EagM3Dx5yurRCt%2Fw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9615864Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A00Z&sr=b&sp=r&sig=Hc%2BKwOVrH%2BG8uEfHfZVCsFPWGCyjBc9aE0wOwfNGvzc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:00.9616602Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A00Z&se=2024-11-06T11%3A08%3A00Z&sr=c&sp=rl&sig=ibSgpwmOJlSkrkV0qDF6SdaAmUIdDPfFJO%2BKPPPwx60%3D","expireDateTime":"2024-11-06T11:08:00.9617301Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2525,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:10 GMT + - Wed, 06 Nov 2024 10:08:01 GMT mise-correlation-id: - - 635097fb-3a21-4bf8-877e-3e261e8cfa40 + - 1794fcbe-a15e-4489-b9cd-2e18210a4364 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054710Z-18489d46dccj85r8e2f8g29m28000000084g000000000sk5 + - 20241106T100800Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bhf3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2553,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=exzjA4pBG7Pd9eby3W4t6Sx%2BjS4ClycNvUlZddVGfcI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.8061514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=t9A8xt%2Fctkp8yGmWWQ3g6qtrzgqDiYEfxdahrp85JNI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:15.8056873Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=38L%2BFp7QcphnFMLiDtgl3%2BCC8poaMLhPTU3RZ4cqSa0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.8063272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=oYK5qdRQOpBsQzMiDGUv2ZRavXbOpade0jZ0XATjbGM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.8064998Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=adyJP18lJqlWpRsJTltJd6jFrmasqQR4JY7QGAkbGak%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.8066767Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A15Z&se=2024-10-16T06%3A47%3A15Z&sr=c&sp=rl&sig=cYsibn19zDCZExeALZFvwq4Z%2B%2Fhqv29H%2F%2F6%2FrF8vmME%3D","expireDateTime":"2024-10-16T06:47:15.8068514Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=S0E7cO79PXXIT%2FkYh5ll3iIq2raAVVmUAmADIQkdCVQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3054996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=0WnbEGbPeDiYEzJWZuXfLqzIlZRLnQf%2FqAwl3X5NUlA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:06.3050368Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=BNQjPmIZluek0I7eZ5nc4pr14L2QkI2w%2FB%2BTKur26Og%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3056233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=vynTU9CjZIN75xNJ2VfzG3h%2FWQtXjSYuSogtcCmAn2A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3057638Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A06Z&sr=b&sp=r&sig=rVikBSKsX5HxoBrLxrZkg2C1sH66gHD3SqpPuN%2FwpEo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:06.3059228Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A06Z&se=2024-11-06T11%3A08%3A06Z&sr=c&sp=rl&sig=fkUr%2BLVKmlJ7w08PUZ8TeZ0T2x4FNCI%2FSBZGn8K5dFg%3D","expireDateTime":"2024-11-06T11:08:06.3060613Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2567,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:15 GMT + - Wed, 06 Nov 2024 10:08:06 GMT mise-correlation-id: - - 707c34eb-34fe-4a6b-b5a0-a1d2f5fdd104 + - 52e5e498-f8f9-484d-94a6-a2013d63aa80 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054715Z-15484bdf457jvkjnektp2rx17000000002r000000000m1ty + - 20241106T100806Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bhsa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,12 +2595,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=TEd6Xi0S%2FOinxmcPA%2BehNPyScDl6fH0iZKbRNtcXJqA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.1716324Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=ZUMGw3KEfjEbVO8zbD7hhQnSPzpSqNdl%2BEkVUbqY1OE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:21.1713939Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=6rhBAN5h3u68IQmSK0l4FUUg5Vn6%2BfY6Ga3XR4kKfYE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.1717245Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=mblMWHQaFSmhCB7Yr1K8NfGTYmvX%2BR7X79eN6bRp0lY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.1718121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A21Z&sr=b&sp=r&sig=qIRnlJ14CVySCle8jTG5v3yJnS2JHTmTMzT%2BfNymI6M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:21.1719032Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A21Z&se=2024-10-16T06%3A47%3A21Z&sr=c&sp=rl&sig=MyM1ZKwIvm%2BfGrUwT%2FLb7FrDMpvzLtma6KPppUjP%2Bp0%3D","expireDateTime":"2024-10-16T06:47:21.1719877Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=efAX3kUA0BhXt1pWJhcF8dfIjvEhanur7uJab%2B2r4ks%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.646809Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=3WRY%2Fa8Dgz8G5WSn%2FgJ%2BEAvmVb9uAwIlNdWPw2y3g60%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:11.6463756Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=QbEnpkbbaRsNQecIH4v%2B6TgMkLGp9GMMk41V7aEkBfg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.6469248Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=oXE8%2BgmPpVcyClMW3ghzUxgtnBZ%2BmHuZfG35n%2BX4HDo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.647023Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A11Z&sr=b&sp=r&sig=iIJGiWtawYkXW5A1jOI7k6%2BaXGD%2B4aKaL1sbzz%2BFnbQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:11.6471184Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A11Z&se=2024-11-06T11%3A08%3A11Z&sr=c&sp=rl&sig=0H7EBfYSXqQNN5sswPa6RufU67hSXmpz3EfHARIHZmc%3D","expireDateTime":"2024-11-06T11:08:11.6472131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2650,17 +2609,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4912' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:21 GMT + - Wed, 06 Nov 2024 10:08:11 GMT mise-correlation-id: - - 2ce1852e-369b-43c1-9b61-6d3c488d3360 + - f9f7ab61-f9f2-456f-98c1-3860c7c4f66a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054720Z-166cf497cd4qwz4p7wbrzn166c00000002f0000000001f5f + - 20241106T100811Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bk0t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2678,12 +2637,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=tifZAiUhHGC6%2FqQtIz%2BReqmOQMl1iwEsgngEpYl8WQs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.4982567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=GNEYSkkUJz5lNWzQUmCDAU2ydVnO5JHMCm%2B7Ug%2Bnolk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:26.4976388Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=f08tPYh8Qa1g0Jv836kTUlIU2tc3xZNX6%2BqmiuJ089k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.4985654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=W4gHtZv%2B5AMzbidn7aecLal44kg1QRLPNBo9Zc2rx4M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.4988375Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=fJFzY74jfbagp5msLGFcn4g6Uy%2Bq2ToNiKVrs6YDe9o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.4991081Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A26Z&se=2024-10-16T06%3A47%3A26Z&sr=c&sp=rl&sig=lCujTwfQiusW6JbQDRB3tNaEUhsfxaQrShYlHOSIiNc%3D","expireDateTime":"2024-10-16T06:47:26.4996097Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=lIXEvhHifK9tGXt95LsW%2B5bbg0OwSgqXfs1jnZGgZxs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.9824492Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=Zk4O3vI536Wtn%2BqIcIcdAMEmj2%2B%2BUaOhTY21vHNmORg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:16.9819706Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=5OZU%2B2WXOxYGNBDNVMj%2BwUhCztM7TCLpUZxYN7Dn2y4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.9826039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=p0VAoqIhxx5x4RMtMQL%2BnAf2TvOWTMXvPsjvo92ZXfo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.982802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A16Z&sr=b&sp=r&sig=rln28q4XWlCEqPd4n20gPr3K6aM2rOYvczc5LziXn9k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:16.9829897Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A16Z&se=2024-11-06T11%3A08%3A16Z&sr=c&sp=rl&sig=qsCVskrvFMDIhIwPM4ylgTvoh2q0YFDkd8L0zyypc2M%3D","expireDateTime":"2024-11-06T11:08:16.9831697Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2692,17 +2651,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4905' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:26 GMT + - Wed, 06 Nov 2024 10:08:17 GMT mise-correlation-id: - - ce38e39c-4fbd-42bb-99a6-3942a3351131 + - 158b417e-f794-419a-936f-13cefa3dd0c3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054726Z-17f5d8496675bvlhwnegd9cxen00000007sg000000003spp + - 20241106T100816Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bkdq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2720,12 +2679,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=qXu%2BQSaIcUl5C6rmcC6o4pQAwjvUNkSelafqlY1AAEY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.8274762Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=0xN0rFixXBbhr5ECaPEBQDAabPxarJsZTP3E3%2B8AUN0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:31.8271404Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=k6e7SuuJgiT0sB3e0U2BTOzML3HJnFHkOSpJNfrGG%2FQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.8275725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=t7pN80yJ6ZFyeQwPoGIfZ0MqeDLGigsR9wgadc6dILc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.8276768Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=zRUYEVN0cU9H2MOnpE3acWo4%2FJXZRDQPpC%2Br9T3iY08%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.8277723Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A31Z&se=2024-10-16T06%3A47%3A31Z&sr=c&sp=rl&sig=Hr%2BCuzHgRx1kyv%2BsCOSjT%2FwgAxW98YnqLqG%2Fk5cjZ1A%3D","expireDateTime":"2024-10-16T06:47:31.8278916Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=rjLO2YLrhWeQ9zT5dDkOcXhp5hyg4MezD%2F4z9tZi23E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.3032234Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=X6mhAe5YitZp458ovyjj6Nf9mI3YB7%2F9jNDs0V2fbiA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:22.3027528Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=cbRDJscIQfTdykuNEUdo7brJ5CEMit14x0wBDVeI2DE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.3034254Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=YGZSJcal4iNoc%2BNFRyYV6Pb50CI2wmcwW0ecc0Mu%2BEo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.3036246Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A22Z&sr=b&sp=r&sig=hIlKLw7I1kRqbUiideezK%2BhmjSkhIjErXqINCv16p9c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:22.303853Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A22Z&se=2024-11-06T11%3A08%3A22Z&sr=c&sp=rl&sig=D2h6lZbD%2FBcWm8XpP4r3xGUruU04YLLfFOFiuAYKCxk%3D","expireDateTime":"2024-11-06T11:08:22.3040345Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2734,17 +2693,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4903' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:31 GMT + - Wed, 06 Nov 2024 10:08:22 GMT mise-correlation-id: - - 5933bfb8-8b25-4818-9da2-2b349f65ea2f + - 06c9deff-3822-4b8f-b145-83d992ed3ca8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054731Z-165bfd566cftkzshba71wsxr9s00000006p0000000002hu5 + - 20241106T100822Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bkq1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2762,12 +2721,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=tccZAtKTWdv1tmkCrkyJSAfi59QIpxhwTGOja1oF8mU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.168215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=jjPcASDv8BdQQbM1NWGwYzL%2BkGYfazRXnaRZAf6XLYM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:37.167819Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=mP8p8pQyDYSWaE4aGvY9Xd%2Bx8Au5Wmy1eM6ugUGx6lM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.168355Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=qyD7FE%2F5ivHBLUMhDV6LYigxfgTWAe%2Fz0mEoo1FC1xM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.1684903Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A37Z&sr=b&sp=r&sig=dpESz6t8YzYl6IzxLY9tB3SpHWd7EmGFUzKLyevCJZM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:37.1686281Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A37Z&se=2024-10-16T06%3A47%3A37Z&sr=c&sp=rl&sig=WjS0kr4kOWfBC44EbvLDhbvLvJ8MnHPEMsv%2FI261hYQ%3D","expireDateTime":"2024-10-16T06:47:37.168763Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=YD6GyQW%2BlMad7Cy2ut6GOWKDdxIeykSmPEvrIQ5ZjqM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6299795Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=%2BB3Y8%2Bk77E4Sus9lhDJ0t9rp62DfrWImgLo%2B4sX0S6M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:27.6294652Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=vOhYvpvH%2BQN1G1bjBMd%2Bkt9NdWAUg8olFX6zlgZ2yT4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6301841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=YnZx9JmSasjKjFdgvDiacJ2vKxKei8%2B%2Fbe1VACgKgco%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6303431Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A27Z&sr=b&sp=r&sig=hrYXEc9hgIauXrduRCCxDOuzh9sfvA%2FmpURHKvBScVk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:27.6305177Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A27Z&se=2024-11-06T11%3A08%3A27Z&sr=c&sp=rl&sig=bwzRYM%2BUo9Toilq%2BPpmFYy4xO%2BGydDQTHGgDR5JIXpU%3D","expireDateTime":"2024-11-06T11:08:27.6306827Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2776,17 +2735,17 @@ interactions: connection: - keep-alive content-length: - - '4899' + - '4916' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:37 GMT + - Wed, 06 Nov 2024 10:08:27 GMT mise-correlation-id: - - f6ff1e98-b9c4-42c6-82f8-3c9b2d42774b + - eeba7b52-22c7-4e43-aff9-7b75be47f0fe strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054736Z-165bfd566cfznrf9x5qx3qhqn8000000099000000000d82a + - 20241106T100827Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bkz4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2804,12 +2763,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=1X8PaAkt77Rmn4U1kvVxvQfuvpBmpXiXKJkRVFAHppc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.4392372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=uV3T3hKi%2BhxLOMy2upCWMsKNGmVzqO4%2F4keAxzPHP4U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:42.4389803Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=jsRP8pADa7oGjQnFVjqFodXpEBMnLgPvOAX8ENeUyLU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.4393112Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=JI3n8z3HfsaBOqGLEOnQ6EfcdkyZeqxa95OSzDvxF7w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.4393842Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=7MRFwmgHQtqZvOBCNkIU64dq0og4IDAmxfSuOd9MZ8A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.4394602Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A42Z&se=2024-10-16T06%3A47%3A42Z&sr=c&sp=rl&sig=T1U33gwz0guXyHbCoN%2BTezTAxDR9wkUn0z8Eq0ig3fQ%3D","expireDateTime":"2024-10-16T06:47:42.4395365Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=0fBdp%2BeogKESd9KZFiKK55%2BILu2PiQoi55P7cl25EsY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7886051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=cmpTkm%2F3MmhMToy4fiv1av%2FL7Kk3UPfkRWzDQPMaGVs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:33.7882519Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=OMUHw4TVEFpDJrXlC%2F4ygC3z6O786k2CmO%2F%2F05OawpU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7887289Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=qImD0bK6e2wXYHo0rjVnAIsORozmWLXU0Dyx95VDJLQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7889105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A33Z&sr=b&sp=r&sig=YlsX1XKkmwOFWlLVttlb8FBWl%2BBYDoIRmpzKQQ9KGQY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:33.7890727Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A33Z&se=2024-11-06T11%3A08%3A33Z&sr=c&sp=rl&sig=Va5kQbZaym8A91whEGa5P8dadISVpUzGTV8M6Gp3Hpc%3D","expireDateTime":"2024-11-06T11:08:33.7891979Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2818,17 +2777,17 @@ interactions: connection: - keep-alive content-length: - - '4899' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:42 GMT + - Wed, 06 Nov 2024 10:08:33 GMT mise-correlation-id: - - a80071da-9ad9-4912-a2b5-d641509634b6 + - 86b11ede-9a42-48ea-b914-9a134077ca62 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054742Z-17f5d849667h7djshftd289dx000000007yg000000001mvk + - 20241106T100832Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bm8c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2846,12 +2805,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=2%2FXzFB7zDrw8KJFxwKnRMHP3nS6uqToF7fE1dsQwvVU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.7732407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=5RZMQ5Hz2%2BfFsVeifOZnglvq0T7sdErWELDu2eUnyAo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:47.7729566Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=BL0%2BvD0koRXtaKAgMdywxHNkCndkdr7omoYF5WPOnFQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.773342Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=%2BYGO56VtSz88MgFy62mzqTVja3fFMUExaOpv%2B6b3m5g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.7734307Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=B4eIuz6iIG%2FqHPLFkfAd4cbDyp6tnS0cxurWWUjN9Zs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.7735188Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A47Z&se=2024-10-16T06%3A47%3A47Z&sr=c&sp=rl&sig=JxzYE3yCw2rZk6CPyxQ0px1Abk3LMjBBu6aAHwOkpOI%3D","expireDateTime":"2024-10-16T06:47:47.7736087Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=KLYKETe3j9WutF8x9DCDSnwRNQy7jYA4NlK2EQR2zJw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1384438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=7Qk%2FzTH1nVuUDejeRN9sJL7nb0AyFiB%2Br89sUuAI438%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:39.1380401Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=9b5InhlKg1xjhl5Zhkn8mV2DT0jFssCc0UM2p6gqC60%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1386359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=w8gIg2HcA45IgfdMEIv8qIMQ7ZFJpyRq6gV46lcdAcg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1388177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A39Z&sr=b&sp=r&sig=G62fe5O4YpnfeLwWAQG54HD7GBuZeoZWCNifvq561lw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:39.1390084Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A39Z&se=2024-11-06T11%3A08%3A39Z&sr=c&sp=rl&sig=USy%2FyCtcGQpVcKe0%2F%2F3UNnxJQVJ5PukC2pMUa1GCp%2B0%3D","expireDateTime":"2024-11-06T11:08:39.1391912Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2864,13 +2823,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:47 GMT + - Wed, 06 Nov 2024 10:08:39 GMT mise-correlation-id: - - deb18f75-4f48-4c72-90c5-c880ad67a378 + - 8f865c37-f40d-4df5-98e1-a739e1752a9b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054747Z-165bfd566cffhs2674zxz6xayc0000000940000000008ape + - 20241106T100839Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bmp7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2888,12 +2847,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=IAfkOFRJvC7pJJbBuK%2B%2BWSJ%2B%2BYtCjb03TLjnkkhkzMI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.1008644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=xh5ZSa01xG3ffaNLfNIfJRp43zAnHaD4il2j%2BBwll6s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:53.1005003Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=kuLyre83vWP4JarZekE%2BXXxErkW353eiXV0jEztZXg4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.1009647Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=QnCFC5OH8w337pvJo6FZCpdYfxzrwPLSNOF%2BF819SN8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.1010567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=kDzBf11l1v1KLGDeCRrshRsDFwv1qd40g6pMIfuJXd8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.1011539Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A53Z&se=2024-10-16T06%3A47%3A53Z&sr=c&sp=rl&sig=%2Fj5yFacWwFWeAIbIEQL%2B84VGz1C3x6ddrwKbp8MNHDc%3D","expireDateTime":"2024-10-16T06:47:53.1012398Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=4%2BQvTrjpOFchAaaEFeRmp1EGDnteXKmP%2BPs5%2BOaYVak%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7806344Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=HEB58izPWyyuMFNdLJ7lzOKFCw%2Bdgol%2B3nT5r15Z5Is%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:44.7767885Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=bYyPPRfVs%2FnQ6oPcqmov6af62RiO%2FpJy%2FE4AYZzv%2BAI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7817962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=NiCG4N%2BaQRCm3zCKaj7xeVyprGCf6NLz6l4DYTzVSF8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7824616Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A44Z&sr=b&sp=r&sig=WM381PVVJOZSGCYj1yqj4Z0FobifTtClmh3PhXBH1Bc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:44.7828205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A44Z&se=2024-11-06T11%3A08%3A44Z&sr=c&sp=rl&sig=7iZBufWird%2BhQk8DpC%2BZQOXVy30Cu05TJS4UUsECkLY%3D","expireDateTime":"2024-11-06T11:08:44.7830735Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2902,17 +2861,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4916' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:53 GMT + - Wed, 06 Nov 2024 10:08:44 GMT mise-correlation-id: - - ee70a45e-92e1-4fc1-a14b-4861a50374c8 + - 02d2aba2-fb10-486f-bed0-673580921934 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054752Z-17f5d8496676mhmt5p9sr0x1bc00000008t0000000001rdb + - 20241106T100844Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bmyp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2930,12 +2889,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=sVycYPHh92HrHeAGWeYwymw%2BWbpEMvbjlD1yjEh129g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.2365584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=dovuYqYQ0XYIxgGuy%2FRI2BUByyTYYyJ93VDWmrCROeo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:59.2362912Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=IRaHVXR7g%2Fusl1TYvoXy86B%2FOlQ7IgnZo9R4tbqvSiI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.2366519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=VHnXG8Beoa512UP3oRy3HKcVEEOgoPpN5Coik5P%2Fd9M%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.2367322Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A59Z&sr=b&sp=r&sig=PEx6XsR8ZoQ481TWi8h89zAjP6DFHHkxbyh1Q6MUCWg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:59.2368294Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A59Z&se=2024-10-16T06%3A47%3A59Z&sr=c&sp=rl&sig=0KILWsB8hFvrkgNOQuzcCLUZ9zaCd4NdyBbtDjGjf20%3D","expireDateTime":"2024-10-16T06:47:59.23691Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=PKj49gN0SelYQualcre6loqEUtt6WC%2FU0PFU2d4%2BLiU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1308802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=4IyWJ3CD99HrWugeE%2FcVnDPGt99ZSJ6e66E%2B%2BF6T2zs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:50.1304998Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=IWa5E8pCjFg%2BGePV%2B7%2Bu1z15CJ%2FNOwzo2WxVLdSZLHE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1310213Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=0QgxRuv%2BGHeOf598AVYkXIDOa08Q2QHQyEmKNbJRowA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1311666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A50Z&sr=b&sp=r&sig=d1ZHgjdboF3LhX%2BX6M7g%2B3FMCiQc8y4%2FAf183hAO2%2FI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:50.1313125Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A50Z&se=2024-11-06T11%3A08%3A50Z&sr=c&sp=rl&sig=ocVSaGLBd0EjskFLwSVLV6eZp6LzCQDHzekaoj9Eas8%3D","expireDateTime":"2024-11-06T11:08:50.131464Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2944,17 +2903,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4919' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:59 GMT + - Wed, 06 Nov 2024 10:08:50 GMT mise-correlation-id: - - af4a105d-bb9e-44c5-b35c-eecda99f27c4 + - c57562f5-8a55-4898-ada0-958936e931da strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054758Z-18489d46dcc7qds9rw9wr310dc000000062000000000ecna + - 20241106T100849Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bna0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2972,12 +2931,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=VppP1nfTD4pmwrWj%2FhZHoVhU7I00fPtqC3lPJrZmn90%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.559045Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=8WuWMrbbcdtNbtEarqxDpCX7LE7S40ih58vdKx%2BnjwQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:04.5586548Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=QPgYSmox5celMdmKv0YtQHPjiLXjd2Eu401p9a0u2vw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.5592474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=ahuYTytz78Mhti2SvPnQyPSwVKJnlJA8w0nmLplOUOM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.5594482Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A04Z&sr=b&sp=r&sig=ZLPZdBjGKrw2FzDtZZzihgPeLOIJN41venjS3PkcFfs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:04.5596687Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A04Z&se=2024-10-16T06%3A48%3A04Z&sr=c&sp=rl&sig=1f4BW%2BSM4PQAV9tI9LzkOTr90girIO3iI2a9rX6DMHs%3D","expireDateTime":"2024-10-16T06:48:04.5598719Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=o7Yxq2OEoDqMcDZYTVr%2FFRec5OIhsxI4GyMz6Nz6%2BzM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.5204679Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=lhjsROg%2F1wCxGbUJQ%2BHXh5aiutZxy1HF7GuZXz4gyB8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:08:55.5194904Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=czLdA30OPcZRsY0kRVzP6s9UtrUGVrH3lkopvKIHDsY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.520644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=S3kchPVtjkHLUnCB%2F4flvyOjzAOfTCcysPuZQXeD2yM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.520833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A08%3A55Z&sr=b&sp=r&sig=nmzN1AF02yyUyUZVsnZjJadQ%2BWAQEgt9XP%2Fhl12seTk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:08:55.5210034Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A08%3A55Z&se=2024-11-06T11%3A08%3A55Z&sr=c&sp=rl&sig=Oato%2Fowslo9rqkSvehZN8MsSrTnW7EOdp5gyoaPh2VY%3D","expireDateTime":"2024-11-06T11:08:55.5211854Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2986,59 +2945,17 @@ interactions: connection: - keep-alive content-length: - - '4898' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:48:04 GMT - mise-correlation-id: - - 36c4e6fe-f5ec-4642-9728-43dc65a829e1 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054804Z-18489d46dccgwx6cyqev009zy000000007t0000000009n0r - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=UmAnQbdA2GToUYYIUVEUEt5tI4%2Boqg706ECL7c%2Bv98M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.9517676Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=0x2FLcp1FsdT9yD4D2O%2BmdHh4hI5TfYhbEhUJJ5TrxE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:09.9510875Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=UhlN8TqJvJcUtqQodS9uFV%2BfWzdAtsd%2BUWBLjJ%2BDVGM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.9519887Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=wrOxO0IfJPEOKE%2BHbd8QJcwn7QGEjHdCt1Hy5NGsQiE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.9521949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A09Z&sr=b&sp=r&sig=w6kmNz2aEEjuQ5aHn3qrioUH0nQ1AuEkAl0BWIaoKiw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:09.9523061Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A09Z&se=2024-10-16T06%3A48%3A09Z&sr=c&sp=rl&sig=D6HFyiy%2FU8QAjxA4P8eBAapkgbjfbnQKn6vxyDka0GM%3D","expireDateTime":"2024-10-16T06:48:09.9524684Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4909' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:09 GMT + - Wed, 06 Nov 2024 10:08:55 GMT mise-correlation-id: - - f330060b-0ba7-4936-8779-fcb1ade5d489 + - 6ca4ba7f-84c2-4698-8b7d-e5b7e2411dc7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054809Z-166cf497cd4v8snbtm724w4g2c00000008400000000028kd + - 20241106T100855Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bnn5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3056,12 +2973,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=RNJf8h1eyhe0ottddDRTXY3TXJeihQQxo26VPg7ZLQc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.3279133Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=R%2FT4nLu95jxW6jyZ1VuZKTCIOlCYFIkhIvJjsjiy%2BmY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:15.3274791Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=%2FjJQIhWUvKoxwMGp4OyWpKfAoLH1m%2BRxjT9qSmuldfw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.3280149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=kTXGwCtCKLppxpb1TM0crqiCKhYq3h7YXT%2BcdTlyPlw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.3281103Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A15Z&sr=b&sp=r&sig=%2BgFsW36PDbaF%2BB09CBVsNHjmoBE1iF7tuehIwH%2FYIW4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:15.3282013Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A15Z&se=2024-10-16T06%3A48%3A15Z&sr=c&sp=rl&sig=ozlwKK6Bp2hhsy1ISbVgbrC3PKQSBji2c%2BxQ6Gp7Lig%3D","expireDateTime":"2024-10-16T06:48:15.3282969Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=9eFjSxhMxdrpRTSNXzDVaGcw9F7ij6a%2FHdvu7LgpDO0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.8553085Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=7zC4FVgvWPGnA0EtGpUlo0Eto8NlNPsTcKUuCFQaI10%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:00.8548981Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=dWDRWzB2FKmL%2FXHWGHX4mokR%2Bdhseaicj1u8i6ihRs8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.855405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=6Z8bH%2BXIYmKext8q6IJxZoXKVh4FTDLeLSJKGGvddP0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.8555044Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A00Z&sr=b&sp=r&sig=dgOOORCuayU0ytkcjaR7i8qafqMQjVm5Ddn37pP2zGI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:00.8556038Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A00Z&se=2024-11-06T11%3A09%3A00Z&sr=c&sp=rl&sig=1v23Vfb9eWZjK%2BueZl5VXiObz8k3lbgAdWtkZ5rpzUs%3D","expireDateTime":"2024-11-06T11:09:00.8556985Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3070,17 +2987,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:15 GMT + - Wed, 06 Nov 2024 10:09:00 GMT mise-correlation-id: - - 74b83075-e660-4c90-8ec7-e8f1f746a53a + - ed9d62ae-5f00-4b9d-bc39-821391c39652 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054815Z-166cf497cd4r6hmp97992txd7w00000008000000000072qn + - 20241106T100900Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bnys x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3098,12 +3015,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=EBQBMlTaI7fMXWNVM2tmVqxV6hGM7fH%2BmWlDfKQC2iM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.6470743Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=3DxRvpTHe6qddNQcwUFM0ByK0frzC9XhKwgNYahHFE0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:20.6465227Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=joR1DqQT62ALowc20oZ8%2BoIAQGOL33MJiMj9y007rvU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.6472689Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=NbpJFrNqsMc2uVmHIzsCeXF1QeVgVnaHzbznyqj5t%2BE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.6474808Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A20Z&sr=b&sp=r&sig=rvYU%2BNE5se2wcTSUVs2wyNxfzMUmIH8MhQ4VBO5S7y4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:20.6476794Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A20Z&se=2024-10-16T06%3A48%3A20Z&sr=c&sp=rl&sig=m9ZrRa7TiIaa%2FXJbvlXU7OKibudfdjGVjEsTuJk705Q%3D","expireDateTime":"2024-10-16T06:48:20.6478661Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=rPCZmGnAQiQ97Z4i%2BUsPf0F0axVaDZ1ZNwoDidwV0FA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1754304Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=WUfIradFsxvBByn%2FlHR6PYLJTcXBI8q75Z47i1lTT2M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:06.1750808Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=L9sOPIz10CLye0fVanNvl%2FvdH5ZqPEatimKq4l%2BBfUQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1755734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=SvyQVV4Jvtr7hjwyNK12X6BasfoqGa9EIyv%2FThw9B8Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1757152Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A06Z&sr=b&sp=r&sig=HX9Za5WorJL%2FGRzygPv3Ch8qg8fkhcKd2yOpIYePX%2FU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:06.1758562Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A06Z&se=2024-11-06T11%3A09%3A06Z&sr=c&sp=rl&sig=6OXBHR64SE8f3uAnfdvlWBJ%2FieHn7gYHmWitubnE8cw%3D","expireDateTime":"2024-11-06T11:09:06.1759965Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3112,17 +3029,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:20 GMT + - Wed, 06 Nov 2024 10:09:06 GMT mise-correlation-id: - - bfd571e0-1da0-4cea-9385-8c8057d807e3 + - d0399292-5e39-450f-8b13-1e2152a142e7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054820Z-165bfd566cf4k2zhgy89gpw604000000091g000000005vk0 + - 20241106T100906Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bp9a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3140,12 +3057,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=FNTJUh5JacrLg3uj3lD%2FkJ9a43P88nqGsvEDTTLL%2Bo0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.9504841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=zCdoayM3SX4IYyccmmRFnR2%2BChHI%2BY%2FL%2BixwnjkSqug%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:25.9501753Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=x8QrYxvhlVUXCjri0ZuklJAFLZCljp3wWkzKCrelE6U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.9505829Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=x8GnKEY3g3%2FetkLjqcoj6FED8QO3ix2Iiok0XXeeTyc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.9506816Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A25Z&sr=b&sp=r&sig=FD0cEilcogL1jzoRTBKz55n5yeOrNXX1gEcKjuVhrnk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:25.9507799Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A25Z&se=2024-10-16T06%3A48%3A25Z&sr=c&sp=rl&sig=zbyquqlD2KDGEv6OdH0Yz7aDmIC7GAaXSZgWUteSzFU%3D","expireDateTime":"2024-10-16T06:48:25.9508759Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=tAhsklCSDaq3ZOvw0Gc4aVAaVRKdZkVrVVh7XU2Jk8o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5031544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=2zn8ndVqotKGZCYLj66J5a2VIgRmjfVJseVoPtVikAY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:11.5027963Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=1%2BZV%2FO0AvvN9BJu3EcIY2zoNa1Fj7aABrPAG3x0IKVA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5032926Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=G0NNia3L6w7KddBWmAyohonEblAHFx7PWeTb6v3wr9Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5034291Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A11Z&sr=b&sp=r&sig=ZWqU0IueO6KWK9H5wCBtQV9PWGcnCuxyHWybWX%2F%2F5Io%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:11.5035625Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A11Z&se=2024-11-06T11%3A09%3A11Z&sr=c&sp=rl&sig=hiecdc5O3u%2BBOBrx2yg8TNB2dTUAi2ll4hQ57Qyo2q8%3D","expireDateTime":"2024-11-06T11:09:11.5036969Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3154,17 +3071,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4902' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:25 GMT + - Wed, 06 Nov 2024 10:09:11 GMT mise-correlation-id: - - 759d0342-267e-48de-adb4-4f8a8f83c0f9 + - 78211485-38a6-40da-bc41-3492bafb33ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054825Z-165bfd566cfd2dxssq2e8pp1zc000000093000000000aaw9 + - 20241106T100911Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bpm2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3182,12 +3099,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=2IiWd2sFTsQn1ArqGXRk5OsF2X1vl%2BstlbBR475kK0A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.2248378Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=8aC%2B4mcpRC0OXk1rAN61ykeXMEY%2FjWx5SLGcMfsrYnk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:31.2245609Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=xlPDgjWpnENMLj4qNX2nKT0zbMXiTMJUQwEFV4lVqPQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.2249054Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=tUH%2F8Z9oQlJxgwgET1mv9FUHzWy7cblZj6sIZVNCAtA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.2249574Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A31Z&sr=b&sp=r&sig=LkJE%2F7m450%2BeI34rLF6PahOZdwkaK3GRMrPziG08U24%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:31.2250079Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A31Z&se=2024-10-16T06%3A48%3A31Z&sr=c&sp=rl&sig=vNRQeGQN00RKfmBvNTcj6jPOhwRDVcd3mprHRGClvps%3D","expireDateTime":"2024-10-16T06:48:31.2250547Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=y%2FdH2OKdFJS8YCFjWlFVE%2FDatKD0HwbWrMirCLHUuQY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8309485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=0sCan0whfBBh1Cz2ayy32d4Qkw6ZLqxv%2BPYmaE%2BaWtI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:16.825192Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=W704%2BBR%2B7fQ0rIYEdJShZjuyP3iPCcToR6pNo%2BGRDEc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8310956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=VodcHSWXAy9MrSLQ2fS8XEk53IPYOI4KGS6BnUQF0l4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8311882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A16Z&sr=b&sp=r&sig=dudYnEgLs9CqMZZ1jqmg9h9n2qvH26d6ihKs2OGYJX8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:16.8312696Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A16Z&se=2024-11-06T11%3A09%3A16Z&sr=c&sp=rl&sig=HNBhLFUWAJftT%2BY8Y23vSWdr%2FwKLXmixD9a1wk874Ug%3D","expireDateTime":"2024-11-06T11:09:16.8313623Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3196,17 +3113,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4909' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:31 GMT + - Wed, 06 Nov 2024 10:09:16 GMT mise-correlation-id: - - 662e79d6-2cd7-4a40-9a03-3716b609923b + - f9118149-c013-4b26-a1ef-c811dd4ded01 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054831Z-17f5d849667t9hx53vqernxx58000000085g00000000dg5w + - 20241106T100916Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bpwp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3224,12 +3141,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A36Z&sr=b&sp=r&sig=O0iJXq1HgBAqtWdMu9DWrJd83fSH%2B2%2Bq5NZ1HIiJtGQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:36.5766686Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A36Z&sr=b&sp=r&sig=Kc4hfoYQFZ2MhHW63aNsMFo8pxNJr7%2Boz%2Bl2lAArp9I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:36.5762322Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A36Z&sr=b&sp=r&sig=0%2BcmCADIKx2cwCAYpoeMejII2%2F%2F8z8Os5%2FEnrDbW%2F4k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:36.5768376Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A36Z&sr=b&sp=r&sig=jUnJwFj5zUjbX6fH8PC5MOQdRbn%2FJPaqwSIQKCq8Hhg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:36.5769968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A36Z&sr=b&sp=r&sig=ORkm6rxHOZ%2Fu5zaElu1vcQC5RKZIEKgyoQ3vm36GQqQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:36.5771454Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A36Z&se=2024-10-16T06%3A48%3A36Z&sr=c&sp=rl&sig=fcf9m%2FsBHXEs6R5eMKK%2FcDYZTzS94t0tcjomer8F%2FZI%3D","expireDateTime":"2024-10-16T06:48:36.5773043Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=Y8T3SAcpk0ckNkAhqYRE99gq3SKC5u8QPbRA%2FybePFk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.2052583Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=7Gb%2Be1KduxB6OXrh7ZzY9QKSrG0uVsCbAHf1x8fElBw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:22.2043979Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=Z8RkJwyyQ2FtDICLMQugBZTaI7a1sG7EGj5g5BRsXfU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.2055644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=XTCwsDz2AXUd2VU9UR9NGGZy2vdFOfsAfaYvjcfsC1w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.205884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A22Z&sr=b&sp=r&sig=aPDAOiHI5HplDD02EtrPp2T2MZwJIaErSxInAxn1%2FVs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:22.2061839Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A22Z&se=2024-11-06T11%3A09%3A22Z&sr=c&sp=rl&sig=%2Fkxnzor1t3sV9HtanrxKMYD22db0WMRQWsEuG8P7p2s%3D","expireDateTime":"2024-11-06T11:09:22.2063878Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3238,17 +3155,17 @@ interactions: connection: - keep-alive content-length: - - '4921' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:36 GMT + - Wed, 06 Nov 2024 10:09:22 GMT mise-correlation-id: - - d05a3530-8f36-43d7-937e-eb1085365260 + - 56e700be-9bea-47ca-a16f-a434fb0136e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054836Z-17f5d849667xf5mq613gvk8etc00000009mg000000006r9m + - 20241106T100922Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bq6n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3266,31 +3183,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A41Z&sr=b&sp=r&sig=EDVrKmbFIC4kT0KaXp3hgN2EMAQljC9dYwV1Kusb%2FqU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:41.8856331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A41Z&sr=b&sp=r&sig=cg4Mv%2Bs4cMMoYz8lPOl67c%2Bg4GVVJPhatIMoJEa8s0Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:41.8852571Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A41Z&sr=b&sp=r&sig=IZJ2hb1h4t1PODD5E2%2FNHRmyIwm34YWjVE83UV3dUxk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:41.8857301Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A41Z&sr=b&sp=r&sig=R9sAxKrP1GkdgnTYDPoQJVksyl0oCYKJ5%2BTr0KO1nOE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:41.8858219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A41Z&sr=b&sp=r&sig=hMpxsCnfmmXHVmVJuVT1GvCbG6owAN8MQKRAyFF86EE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:41.885917Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A41Z&se=2024-10-16T06%3A48%3A41Z&sr=c&sp=rl&sig=gNeekkGScV8xSTelP%2FIO6XhuPg1XGtQhHEBtnG0cC0k%3D","expireDateTime":"2024-10-16T06:48:41.8860127Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=vzNtzsDA5Dm9AFjJ0y7MvjTp9qrmBwxkHOxyNAn60LU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7569454Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=gGz6lZ5k3%2BGiD7zwXI3fL9DbRDOxmikL2aWcJz5TseM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:27.756629Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=5v1fheztsUCBA305ZJMNMbcimjhemSsxbRkhRqfnSKE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7570288Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=xqkMR7zMNuAKmrlbq36eFNEUceEQJqFPb%2FoveRxSyL0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7571166Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A27Z&sr=b&sp=r&sig=Y%2FCdV1YENfCpCnYH3z3AJvyYE9b5HvmaUwacMuIulB0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:27.7572023Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A27Z&se=2024-11-06T11%3A09%3A27Z&sr=c&sp=rl&sig=4uR%2Fg9uc69xja24kRK0msojyvY%2BECAnAFe0P6SsNJVQ%3D","expireDateTime":"2024-11-06T11:09:27.7572874Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","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 connection: - - keep-alive + - close content-length: - - '4904' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:41 GMT + - Wed, 06 Nov 2024 10:09:27 GMT mise-correlation-id: - - 5dd05ca1-db28-4cf7-b81f-280c47a42d70 + - afedb7a9-ae53-4cdb-aa9e-c0f31b0c2319 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054841Z-17f5d849667vm2s91vagzspe4s000000059g0000000029wn + - 20241106T100927Z-16998b5679fbplhdhC1MAAcwcs00000005u000000000bqk8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3308,12 +3225,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A47Z&sr=b&sp=r&sig=GnoaNgcC0Bl%2B6L%2FROZHw2fWNWEcdIL5SkyCyyV3CiMY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:47.2157392Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A47Z&sr=b&sp=r&sig=TTE%2F9x0y7AsEr7dZPdt8sbQkpDSPKH6lRTvBPAbD0Dk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:47.2153294Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A47Z&sr=b&sp=r&sig=2ip7oMlSmtkSr%2FBrgqUjR5jh6iMB2mlL4XQ93iiqV6Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:47.2158947Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A47Z&sr=b&sp=r&sig=BsCi66ua4s8%2BSgeAn5jxxzdpbxBkg6gaX%2BXWa4bIpog%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:47.2159965Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A47Z&sr=b&sp=r&sig=PZLw8NeknUq7%2FfgApU9VeHpKhSBXOAiT5Zrb9pEjVak%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:47.2160777Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A47Z&se=2024-10-16T06%3A48%3A47Z&sr=c&sp=rl&sig=vOKt9xy2UngGdDB%2Bw%2F%2B0ENsAzQn%2B2iVMSKNM6nC%2FDLY%3D","expireDateTime":"2024-10-16T06:48:47.2161598Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=tjwTQOXgD0h2C1psdlefTuSAHdm%2FQ%2BhD35AgW8WUzjI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7934813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=MZK1SwEp7G1QLgvOYVhqbZAJH4eOsRB%2FugXyQPso2YM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:34.7932111Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=vBBR9Zpz85Y7tH1GsGX8RVzlGwmZYdAe2%2BZWeVb48mU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7935704Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=j4ry%2FSIOqpDiSyDayq%2Bu9X2Vld91dy514O2eWH3KsYw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7936552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A34Z&sr=b&sp=r&sig=4CL7fQ8drA%2FF2VtK2JLEhiKJCJePIa0ulY4dqRPvqPM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:34.7937403Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A34Z&se=2024-11-06T11%3A09%3A34Z&sr=c&sp=rl&sig=LIMtqSJw2MOcP4VN9VNLMpBDMZ5S71V8fd95c6JTFn0%3D","expireDateTime":"2024-11-06T11:09:34.7938259Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3322,17 +3239,17 @@ interactions: connection: - keep-alive content-length: - - '4917' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:47 GMT + - Wed, 06 Nov 2024 10:09:34 GMT mise-correlation-id: - - 2bc759a4-ff9e-484d-b2b1-3ddc9bcce7fd + - 581c40c5-64ac-4fe5-aa7a-d708899fe684 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054847Z-165bfd566cfd2dxssq2e8pp1zc000000092000000000eww8 + - 20241106T100934Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rh53 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3350,12 +3267,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A52Z&sr=b&sp=r&sig=vbnyqb1FO9ypGmjRstm%2BmSvsargkrjhPM7wOW1MhXy8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:52.5818104Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A52Z&sr=b&sp=r&sig=N8fTxOgC574IxV79AE60WzEKAzCVt0gbcT2X8w6vqAg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:52.5815497Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A52Z&sr=b&sp=r&sig=ahDz3tCH1B1pnwWBfggvgbc%2FN7LECX4FB3HDttwb14o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:52.5819033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A52Z&sr=b&sp=r&sig=cltMLLVfKZQVx%2B4l%2F0Ab%2F5bDRwYYZ0gUBHYtQcQMxsk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:52.5819926Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A52Z&sr=b&sp=r&sig=exdcXuFGG%2FfC84MJvV2E%2BCH1Z6B0T02ieCKWhEQFsb4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:52.5820859Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A27Z&ske=2024-10-16T19%3A44%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A52Z&se=2024-10-16T06%3A48%3A52Z&sr=c&sp=rl&sig=GwXWUWXMCTvgOtxB1WKjg3DUGiXuLXSlE%2BQvol9bIVU%3D","expireDateTime":"2024-10-16T06:48:52.5821684Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=77nxMoUtd9AvXa9I5qpxag5FUN9FMAwOefdaQz3VMio%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0892925Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=jzCsYEXqx5NT7WFfd8pbee%2FyJsIZfpU%2BSR9z%2BZlrbZc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:40.0888309Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=o%2Bzpz9Q%2B%2FP4QPAHvMkbrWB58mQXkrdXIVp%2FI7NYjUgA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0896437Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=4tJa8ES%2F11a%2BAIqwpbuTOqzU%2F9AtgwDEHw7moBksb%2Bo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0897785Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A40Z&sr=b&sp=r&sig=jq9jnlGYGGMFI067eHC776NTfRDHsR2H8tR48IKodng%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:40.0900886Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A40Z&se=2024-11-06T11%3A09%3A40Z&sr=c&sp=rl&sig=MYUAUkVvXr1%2BaZTcZq7Ns%2ByNNW6L%2BGfw6KGE1%2FZLkDI%3D","expireDateTime":"2024-11-06T11:09:40.0906598Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3364,17 +3281,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4922' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:52 GMT + - Wed, 06 Nov 2024 10:09:40 GMT mise-correlation-id: - - d20baa9f-6b0a-46f4-9cef-5e8d53e8f9cf + - 751321c6-0fbf-4765-9942-a331c264d9ef strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054852Z-166cf497cd4qwz4p7wbrzn166c00000002eg000000002htu + - 20241106T100939Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rk1g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3392,12 +3309,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A57Z&sr=b&sp=r&sig=S27NVvF5W%2FvnQK8LriiMMi%2F1tvdrIx5TWx%2B8fNPt5kQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:57.9583944Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A57Z&sr=b&sp=r&sig=SAX3WaRIoc89agxP9gpSlOSHmYIKPMNLSXt0Bnff0LU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:57.9579984Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A57Z&sr=b&sp=r&sig=7o1SlZ%2B%2FNVt1ezFw%2BTLxiAny9o%2BDI520LMWQMQ9VF2o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:57.9584949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A57Z&sr=b&sp=r&sig=tdVEMtpJJEccxdRUHB0MJOAhpnJe1kf62uorl6Qx%2FLw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:57.9586269Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A57Z&sr=b&sp=r&sig=eUW2WSkIiGOy5HpIBav7lQUgZKa%2BHMhxNP8dQtsP1lI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:57.958724Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A57Z&se=2024-10-16T06%3A48%3A57Z&sr=c&sp=rl&sig=zXW2JbC9fgbhxUntfezu4NaheYxrxtdu743QN%2FyCv9o%3D","expireDateTime":"2024-10-16T06:48:57.9588113Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=nBnCEhgAIiFPwMY7VZ2ZNJyyKJsAS%2BHxYGLfm93V3BA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.3780709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=s0guBVD4NAGYeVcL9IRqDm7acns6BSmXyEk4HJTJpi0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:45.3776458Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=UuCv9XKn0fcc%2F9hQK4tNuLSy4HuAT%2FP63%2BX8vd1wQgc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.378251Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=QLLIcSSf3F5AQqteE%2FtxoGaNfymH6a9isW9gAcyyX2o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.3784583Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A45Z&sr=b&sp=r&sig=EJJL9G9BNvZ3arK55yljrMahmJfTCLHHRmspDGHUqLU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:45.3786364Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A45Z&se=2024-11-06T11%3A09%3A45Z&sr=c&sp=rl&sig=ytT5iQ6e4%2FgHiRbT7Vrw5EZAPhX5G52gOJHwom8SJ0s%3D","expireDateTime":"2024-11-06T11:09:45.3788082Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3406,17 +3323,17 @@ interactions: connection: - keep-alive content-length: - - '4912' + - '4903' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:57 GMT + - Wed, 06 Nov 2024 10:09:45 GMT mise-correlation-id: - - a42beaff-503b-469a-9ac6-df966a69a4c4 + - b6e0e1e7-fff0-4986-91aa-17c784fe87cf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054857Z-166cf497cd4dfx7788bvx3ssu800000007w00000000014p9 + - 20241106T100945Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rkq5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3434,12 +3351,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A03Z&sr=b&sp=r&sig=5KU1Yp3rME%2FB5tNu88xHgqi2aG690HxjbWOS%2FugZDe0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:03.3243022Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A03Z&sr=b&sp=r&sig=cGkqN02Z0ju3h60MI3mIMpOqV4AUOE5v2zcZkmvPLUQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:03.3238716Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A03Z&sr=b&sp=r&sig=7EHU%2FCNcz635vqJ%2FDEiQAFgXF23fzSnwY0PYvjfpxZI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:03.3245558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A03Z&sr=b&sp=r&sig=eeGXEBdWkWLdCaNX%2FrIKdEexri8d4O3Byc6mc4n%2BhO4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:03.324647Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A03Z&sr=b&sp=r&sig=Dw2Bv3eT%2Bg3eHBOkAmyCJ3Dqr2TL8WiRh%2F16qb0btbA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:03.3247426Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A03Z&se=2024-10-16T06%3A49%3A03Z&sr=c&sp=rl&sig=6KidKW1nAQyamq9ivHSxKP4AEPZA2xcytvdl5iiN74k%3D","expireDateTime":"2024-10-16T06:49:03.3248397Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=0gCALaDVbTVugutJMeqGZuQTj25b65hRFS6atQfKwAs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.6920669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=3yQKdvp8W%2Fm0ObFqeQaVIR7fKFhs8DiI6sShBSsHxnA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:50.6916624Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=XeUJ0wzuYJf80GbFZ9htf8rq0D9qf1jxeymqDR7zi%2BA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.6922397Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=Ap50fv7vwDlyaPR5fZ%2BfCns2Cys2TxdM9WHLQx7dgqw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.692423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A50Z&sr=b&sp=r&sig=98PUystVdhxtPgITlXnhNtTASYJxcYUPxDTm9Ewd%2B9s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:50.6925907Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A42Z&ske=2024-11-07T02%3A04%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A50Z&se=2024-11-06T11%3A09%3A50Z&sr=c&sp=rl&sig=lUiX%2FFSjsgvVkisCqRPnyzc%2BmbPdhbhx3noPyyaawZE%3D","expireDateTime":"2024-11-06T11:09:50.692758Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3448,17 +3365,17 @@ interactions: connection: - keep-alive content-length: - - '4908' + - '4902' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:03 GMT + - Wed, 06 Nov 2024 10:09:50 GMT mise-correlation-id: - - 7cbea4c5-20a6-4176-b582-cf25a558e568 + - f9fcd6e5-72c0-478c-8a33-4499ff20e384 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054903Z-17f5d849667qmr9byegk96121000000009ag00000000d3b5 + - 20241106T100950Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rmap x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3476,12 +3393,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A08Z&sr=b&sp=r&sig=uc%2BmEkA%2BX%2FkXd06G70lr%2FY%2F6S%2BMTaJ27FSP3ZbhsYJ0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:08.6279295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A08Z&sr=b&sp=r&sig=XapHN3gxeKXzCuUPzthuZyudenTixEdvmKzAA1V9JYs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:08.627637Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A08Z&sr=b&sp=r&sig=jVOR1nJjc2sjDjcAK643E8NJtvGFtTp%2FEJgDYV9ccsA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:08.6280215Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A08Z&sr=b&sp=r&sig=lLMhmDMvBOL1Gvv4kyeMXbyxUVLTXOatT5qXz%2FeYrzI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:08.6281195Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A08Z&sr=b&sp=r&sig=25M8xhj9D16OLB464t%2Fn%2BmdtweZH5lW8VSHGyaeYwhQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:08.6282143Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A08Z&se=2024-10-16T06%3A49%3A08Z&sr=c&sp=rl&sig=tNosPWaA%2FuQxs8ty2mNqmYZ5oJ2spwFTV0tmZ5kinpk%3D","expireDateTime":"2024-10-16T06:49:08.6283119Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=5UbSqSsvUsG%2BPl%2BUlF2753FIOyByDrjAzTCkSkiaqdA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0021557Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=Eey8i89yR0YvImzVRwRFfAdKMC3LJkhS4a7dYwU7WJc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:09:56.0013265Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=M6yrn9veaMgCmM%2BIgpE%2BnggChyHJmgELxW7b6Jj8q10%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0025026Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=XyrCX0FouaNuCK1xvReudp2Fmt%2BOL4uDSvwPCGPwasY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0028539Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A09%3A56Z&sr=b&sp=r&sig=A0IAuBl3cfPry%2FWMUaojbq%2BWpzI7oY4MPYKzTlEtpP0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:09:56.0031926Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A09%3A56Z&se=2024-11-06T11%3A09%3A56Z&sr=c&sp=rl&sig=9Ga5OTGK6Te0%2FjdpFzXRlBR3qBaIhAiJB%2F%2B8fyrZy0c%3D","expireDateTime":"2024-11-06T11:09:56.0035389Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3490,17 +3407,17 @@ interactions: connection: - keep-alive content-length: - - '4914' + - '4912' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:08 GMT + - Wed, 06 Nov 2024 10:09:56 GMT mise-correlation-id: - - b06c5028-bb6a-430d-8d57-2b5f3ecc9a0e + - e9e39b9d-48fa-4a26-87cd-bc52a9d4d5e1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054908Z-17f5d8496676gwdk938uh0325000000008d000000000cbx0 + - 20241106T100955Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rmyh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3518,12 +3435,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A14Z&sr=b&sp=r&sig=Z%2B9DXoJWOC8VoY8F6PwYzrIz1H5cpt6pCwQYOEKklMs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:14.2235983Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A14Z&sr=b&sp=r&sig=Cui7lDijrYyHzgPjHZmtO3eC9w9TLQahi3ARFmfvqYc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:14.2232972Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A14Z&sr=b&sp=r&sig=dXYf%2FAj47RjCk0JGqr6pzrmEocdXGU0OYFGufB21dl0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:14.2236953Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A14Z&sr=b&sp=r&sig=gLVGqI8Co%2BgypkwxghfgDRfUtWR%2BLOJRw1ywqFjItz8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:14.22379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A14Z&sr=b&sp=r&sig=9yVXfXjM7zmVlqTVjJbNTXA25kvzUI3PAq39JWUyXl0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:14.2238992Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A35Z&ske=2024-10-17T14%3A44%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A14Z&se=2024-10-16T06%3A49%3A14Z&sr=c&sp=rl&sig=vEcvBQzW6X1QK0cy0B3cXaSwPDx02U%2FyE9E2IfZ7Qdk%3D","expireDateTime":"2024-10-16T06:49:14.2239993Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:35.447Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:31.147Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=UdKydrg4k7fJTUblfnR6l7lAvVKrv%2BPMP0Oj4ZbWIj0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3255904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=t%2FZSh5mJYmN4Aaq8O6uZpjT43n8n90IEafltDSYz6cI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:01.3251404Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=sl8nU4BLZ%2BAlHy%2BwhBm9ri9%2FJdLr5VF3VE4grfly6ps%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3257665Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=O882m9mZJ%2BLxvPbH32Xtq8q%2F6SjflbGRHcIHRWGN8Zc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3259499Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A01Z&sr=b&sp=r&sig=cewRxhOju%2FTqlVL3FmRjYpUJW5KYl%2Bbh5fWTzUepdhs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:01.3261341Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A01Z&se=2024-11-06T11%3A10%3A01Z&sr=c&sp=rl&sig=ptJNYdI6WOiLViq61hdfSXm7NO%2Bci1hQAzTM4XOsL18%3D","expireDateTime":"2024-11-06T11:10:01.326309Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3532,17 +3449,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4911' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:14 GMT + - Wed, 06 Nov 2024 10:10:01 GMT mise-correlation-id: - - 3e005ce0-ba26-48ae-9d8c-23e12a31bd40 + - 187167d7-7f93-4e66-9753-3ea2ea76e136 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054914Z-166cf497cd47w9bdc501r87meg00000004e000000000bnna + - 20241106T101001Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rnnx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3560,12 +3477,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A19Z&sr=b&sp=r&sig=5whxWsCPj6NOsCoVbgvSxlXahl69hDDMpOnyAhDQOuA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:19.5941931Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A19Z&sr=b&sp=r&sig=OORBMrhVZ09ClXa5%2BenHxcRwt%2Bq6q3KcRPF7KcN5prA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:19.5939806Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A19Z&sr=b&sp=r&sig=RMZdtt494kazgcBOWODGhHILnfwXgdSQB0w1YrbfYww%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:19.5942852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A19Z&sr=b&sp=r&sig=U8zimhiG5SVnVRrtIhZB2YZy95WrpwKSqNjCan3vQyQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:19.5943767Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A19Z&sr=b&sp=r&sig=zXga3rezRzz73wRZZTmpA%2BTEbciuMpnHywg3l5FmCfs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:19.5944652Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A19Z&se=2024-10-16T06%3A49%3A19Z&sr=c&sp=rl&sig=%2BgldMi%2B1j2MpD6vrsQZfTFtEJfeCaT7JZdwiQZ%2BwWn8%3D","expireDateTime":"2024-10-16T06:49:19.5945529Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DEPROVISIONED","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:19.401Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=9%2BE%2Byx0Eyc9yIHlpAklnz%2FJ%2FFa3O93pAqZq5DxH9Uss%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0311692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=c%2BWzIK0xaQf%2FPENfe3iqKWfGhK52kMVvbT0NlRfBvy0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:07.0307609Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=OFHcZWFggMKU794NhiXMzT5BJbRZzN1Q%2BEoqRk4fbvc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0314321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=NYss3fDdQ%2B%2BaZx2IYK9eoPpZOmkGTynEqK7pOYwxUDs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0316015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A07Z&sr=b&sp=r&sig=pCij2XRB6hfY%2B4nyGErxeBuY3YrdXgWDArAs28ke3f0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:07.0317765Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A07Z&se=2024-11-06T11%3A10%3A07Z&sr=c&sp=rl&sig=IdTW19Kt6QcZ0dz1l9D0wX0MBvAnS71KATbABn%2BJulI%3D","expireDateTime":"2024-11-06T11:10:07.0319421Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:05:25.534Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:06:18.008Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3574,17 +3491,17 @@ interactions: connection: - keep-alive content-length: - - '4950' + - '4914' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:19 GMT + - Wed, 06 Nov 2024 10:10:07 GMT mise-correlation-id: - - c3b972dc-2399-4fb8-91e2-215fe4dea0e9 + - 802ff2d1-2fcf-4ff3-a85c-0fa56cbc3d7f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054919Z-18489d46dccnnh2b19wcyx7sm0000000081000000000480c + - 20241106T101006Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rpdy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3602,12 +3519,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A24Z&sr=b&sp=r&sig=55lfXuoqZ9zH0BB0dWonw9Ibs1Khfw8kOS%2FRq5u%2F6LU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:24.9705855Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A24Z&sr=b&sp=r&sig=Gd57J6yGuVMPUa6YS3yhk%2FHRamBtcJfXYluLd1jZMbY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:24.9701012Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A24Z&sr=b&sp=r&sig=6VKiTfCMjLfjm%2BKa9ZQrjrd0cEmnAw2hGxoxcOvujmU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:24.9706836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A24Z&sr=b&sp=r&sig=BvnO6nzVjeGtkh9cTITmsdYnoGDlA9YUGjIHaUu%2B%2FAU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:24.9707741Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A24Z&sr=b&sp=r&sig=o7eryIhLv7ZecmNXp6P5qW5q4W0Qn8XgiyKErCizNZ4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:24.9708857Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A42Z&ske=2024-10-16T12%3A43%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A24Z&se=2024-10-16T06%3A49%3A24Z&sr=c&sp=rl&sig=kuJAHbBLndMPnv%2BJOxGv0rGcOdzqsAjNEwNtkfBp6kM%3D","expireDateTime":"2024-10-16T06:49:24.9709734Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:20.29Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=D%2FwpzrO3pJuv2qm%2FKfhYk5rH7aXxctub9MlZZw2r%2FyQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3951471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=lIxCj%2FAUAxn06RigW01kMBjIW7opEp0UWvVgDYIFgLo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:12.3945942Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=n6%2BjkwjM0SIKIWuBQlKdAyHQCFTrsCFTLzJEW7VbD7A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3953351Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=WCkPVt9YjVeualHTB%2BAIbZ1voiqwfFLmjxG3kGl05ss%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3954834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A12Z&sr=b&sp=r&sig=c%2F22OtJKYbwGVm0sGn1v82YVVZnw5z6wrnA2ST4gIOo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:12.3956097Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A25Z&ske=2024-11-06T17%3A04%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A12Z&se=2024-11-06T11%3A10%3A12Z&sr=c&sp=rl&sig=xD%2FctdYKw0XS77N7fhbbIO%2FR6hbmQV3c3bFmBJ4Hl70%3D","expireDateTime":"2024-11-06T11:10:12.3957742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:09.809Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3616,17 +3533,17 @@ interactions: connection: - keep-alive content-length: - - '4942' + - '4946' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:24 GMT + - Wed, 06 Nov 2024 10:10:12 GMT mise-correlation-id: - - c0fd6975-bc0a-413c-8ecd-476fa9619a5e + - bd9a7e68-9d2a-490f-929e-81fa1f2d7028 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054924Z-166cf497cd47w9bdc501r87meg00000004g0000000005x8t + - 20241106T101012Z-16bf8d9b4c7686pmhC1BOMwzfw00000006kg00000000rq4a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3644,23 +3561,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:25 GMT + - Wed, 06 Nov 2024 10:10:18 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -3676,7 +3593,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E767E294DA9A41849D4A69656742ABED Ref B: CO6AA3150218053 Ref C: 2024-10-16T05:49:25Z' + - 'Ref A: 32312782D9284D0B97C634B7B1D6E236 Ref B: MAA201060514031 Ref C: 2024-11-06T10:10:17Z' status: code: 200 message: OK @@ -3690,12 +3607,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=metric-test-case + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=metric-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A26Z&sr=b&sp=r&sig=P6%2B6DAIhqINbioctCDjjmDEjURxMyw5ObjJSNyYfny4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:26.1278771Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A26Z&sr=b&sp=r&sig=BICw6fm25D9juFrSP1WLSRDGT8ew68cA0KQNRVmrK3U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:26.1275989Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A26Z&sr=b&sp=r&sig=sXA2pzqXfsfTSNLRtNi0jFl63J6jECrGJqzdPAG9DrU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:26.1279602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A26Z&sr=b&sp=r&sig=5beWHslqjNJdMi3XnfBBqdBGyWWpYCJZ4sDAh600vBI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:26.1280556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A26Z&sr=b&sp=r&sig=a8M9TwXRBKKvL8aRE%2FljL3F7%2Fx8JOe7JD9JtqrL7qEI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:26.1281388Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A26Z&ske=2024-10-16T21%3A43%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A26Z&se=2024-10-16T06%3A49%3A26Z&sr=c&sp=rl&sig=c4ht%2BB62wWQY%2BnKxH4zSifD7CmVjVR5CJlbs2XqET1g%3D","expireDateTime":"2024-10-16T06:49:26.1282189Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:20.29Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=6BojtSpgcXMfAR0dqBkxaim6T8ydBGE966TC2V53dGU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8379792Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=1bK6wpdaIAfFXRRbP9zfKl0wEUgCxVl5fObSTDQo%2F00%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:21.837241Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=ptd5L0vVRlng2p%2B5AH8sGU0bWlfvbWRpMn0QMq4TmgM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8383014Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=aimWG%2BwwSylOjZ%2B3iZFgNYGH%2B6YYB79fgqNli1MET4E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8383938Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=MZQ06CUBaR9ng1LMIaYn7T5QhHpZawRhL%2B0cvbCKSw4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8384873Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=CEyJKKLUMLkoS%2FsxtTxn%2FShYEeowC4vFm%2BgTA2QL0ek%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8385811Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A21Z&sr=b&sp=r&sig=67QNuJL9%2Bsu%2F4xnDt7jZSIaSOf6ts9vMAefWhN7unv4%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:21.8386742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A21Z&se=2024-11-06T11%3A10%3A21Z&sr=c&sp=rl&sig=R7GR27ijjhFwfV7PHy3RdKoiso783yKZuqRv9Ja5H8k%3D","expireDateTime":"2024-11-06T11:10:21.8387654Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -3704,17 +3621,17 @@ interactions: connection: - keep-alive content-length: - - '4950' + - '6135' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:26 GMT + - Wed, 06 Nov 2024 10:10:21 GMT mise-correlation-id: - - 2c433397-fe95-4031-a5a3-0901fe4ebf74 + - 7d5ea7fe-1275-46b8-8109-09fc063426fd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054925Z-18489d46dccvln7t51fh7vb5kw00000007x000000000n1ee + - 20241106T101021Z-er1b6dc89fd9ltl2hC1SG1buac00000004vg00000000md32 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3732,23 +3649,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:26 GMT + - Wed, 06 Nov 2024 10:10:25 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -3764,7 +3681,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6CAFD1BF63CB43DCA4FD6479BFB1083E Ref B: CO6AA3150220017 Ref C: 2024-10-16T05:49:26Z' + - 'Ref A: 88D4D869583A4F9EB2287E969F4AE616 Ref B: MAA201060513035 Ref C: 2024-11-06T10:10:24Z' status: code: 200 message: OK @@ -3778,12 +3695,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A27Z&sr=b&sp=r&sig=2iUFwqjMrt%2FqxyMy%2Fi6lEw5Wtrc6759iQr8bzrtveP8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:27.0684544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A27Z&sr=b&sp=r&sig=hFL5%2F99O2MKH5gTZ3GmuhFnXxEjkMHJzbqVz9skWdOg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:27.0681719Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A27Z&sr=b&sp=r&sig=d9wNh3QLMx%2BRF9%2FHj%2BbPlrQ2cUlSNH6TsA3fq0f4LqE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:27.0685371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A27Z&sr=b&sp=r&sig=SuN1FipVc991%2Bu2wAdZf%2Bze%2BRn3W9L1X8nvHBuIaBuU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:27.0686199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A27Z&sr=b&sp=r&sig=NwTEiXCCF%2B07cMI8twvF5EZA1BHbAdXfzME5NFrgMAk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:27.0687106Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A27Z&se=2024-10-16T06%3A49%3A27Z&sr=c&sp=rl&sig=fFZWBm27LGbOkoaVF9OsCMaCeLPH%2FRxFAW4q164jEHk%3D","expireDateTime":"2024-10-16T06:49:27.0687938Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:20.29Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=41nz9UA3kU476WTw2P1Qsu0vq9qSxdoy6hnaZ3X9Lt0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0018834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=QSpxhWmLmnbvfVY6yIvBgGBZZiKMfzOPZdcuqrMB2Dw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:28.00152Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=IqRXHciITBIRNEXM62um%2BM8N88tb1jlueCTZF7udOmQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0019745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=R3Mzp8kRvkpoctEq9p8B3BtrViy1tVEwixq9OFazon0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0020617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=UNPpWkoOfi7xf3Lg1MMo6TADKBnDt82F%2BIs8z2VKFOc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0021477Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=f%2BYpyC9t3hdZwxMjSz7I9IqcSogtzx%2BAIvZWocGh9aE%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0022397Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A28Z&sr=b&sp=r&sig=Vw2yz9%2BZE04Fn%2FCxUz4p0gs%2FS23ODNohUtyD1EuDYMY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:28.0023316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A28Z&se=2024-11-06T11%3A10%3A28Z&sr=c&sp=rl&sig=nHrBl%2BamOs0OSFmkhUAXk%2F5Bv%2FwrPYEKY5HfvlvPq%2BA%3D","expireDateTime":"2024-11-06T11:10:28.0024245Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3792,17 +3709,17 @@ interactions: connection: - keep-alive content-length: - - '4950' + - '6122' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:27 GMT + - Wed, 06 Nov 2024 10:10:28 GMT mise-correlation-id: - - 216f92e8-424f-41e0-9bd6-6ad29a4d2084 + - dd01b7e4-5f84-4755-a1d5-1a7d218aca13 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054926Z-166cf497cd4z4rvk0cprvnxxh000000007u000000000h067 + - 20241106T101027Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fk2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3820,9 +3737,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics response: body: string: '{"value":[{"dimensions":[{"description":"Request Name","name":"RequestName"},{"description":"Engine @@ -3845,13 +3762,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:27 GMT + - Wed, 06 Nov 2024 10:10:28 GMT mise-correlation-id: - - 482dc12e-ede8-4ad6-a3c2-9d012d46e9ec + - 835f59dc-4aac-4187-aced-998281e21976 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054927Z-18489d46dccg5n69wa1d0046r400000007dg000000009npm + - 20241106T101028Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fkk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3873,12 +3790,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-10-16T05:45:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:46:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:47:00.000Z","value":1.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}]}]}' headers: accept-ranges: - bytes @@ -3891,13 +3808,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:27 GMT + - Wed, 06 Nov 2024 10:10:29 GMT mise-correlation-id: - - 23110f45-0b65-4106-a2d1-e9a842d7d23c + - 9d924a9b-65fc-4d10-be33-45afc577f33d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054927Z-18489d46dccvln7t51fh7vb5kw00000008200000000070rk + - 20241106T101028Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fm0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3919,12 +3836,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=ResponseTime&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=ResponseTime&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-10-16T05:45:00.000Z","value":24.0},{"timestamp":"2024-10-16T05:46:00.000Z","value":16.0},{"timestamp":"2024-10-16T05:47:00.000Z","value":16.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":45.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":22.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":19.0}]}]}' headers: accept-ranges: - bytes @@ -3937,13 +3854,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:28 GMT + - Wed, 06 Nov 2024 10:10:30 GMT mise-correlation-id: - - df54dbbd-23ae-412c-ae8e-0921583d51c0 + - 1224f0cd-9195-41a7-b665-3241d907b5e2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054928Z-15484bdf457jvkjnektp2rx17000000002t000000000e8hp + - 20241106T101029Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fm9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3965,12 +3882,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=TotalRequests&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=TotalRequests&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-10-16T05:45:00.000Z","value":22.0},{"timestamp":"2024-10-16T05:46:00.000Z","value":70.0},{"timestamp":"2024-10-16T05:47:00.000Z","value":28.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":46.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":52.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":22.0}]}]}' headers: accept-ranges: - bytes @@ -3983,13 +3900,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:28 GMT + - Wed, 06 Nov 2024 10:10:31 GMT mise-correlation-id: - - ba7ec846-14d1-40b8-adeb-27dcd76e2e3e + - 3a1fa941-5e35-4d93-a189-b3fd1949790e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054928Z-18489d46dccfkdmbtzwpeeg8f8000000080g000000009wdk + - 20241106T101030Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fmx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4011,9 +3928,9 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=Errors&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=Errors&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: string: '{"value":[{"data":[]}]}' @@ -4029,13 +3946,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:28 GMT + - Wed, 06 Nov 2024 10:10:32 GMT mise-correlation-id: - - af19a936-de03-4086-b924-2687ba4e813b + - 1ab4ebbb-f0d1-4062-9b19-9cc525b16813 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054928Z-18489d46dcc5trkwxb4ya4w12000000007x0000000001n4f + - 20241106T101031Z-er1d798b5842sjjbhC1SIN6syw00000005h0000000006fn9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4053,23 +3970,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:29 GMT + - Wed, 06 Nov 2024 10:10:36 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -4085,7 +4002,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 21A7344A64514148AFF95678CDA21C95 Ref B: CO6AA3150219047 Ref C: 2024-10-16T05:49:29Z' + - 'Ref A: D38063B248C6485085EC78C085B00732 Ref B: MAA201060516035 Ref C: 2024-11-06T10:10:35Z' status: code: 200 message: OK @@ -4099,12 +4016,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A29Z&sr=b&sp=r&sig=c0CZ3NQmeHp1MiycTxZtCJKRKanXKY8StPQQiTmaGQ8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:29.8199772Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A29Z&sr=b&sp=r&sig=3Mv%2BLRhYXdmemdXdRdwAKXmfXQztqOca4FhUQKG0CeU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:29.8196492Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A29Z&sr=b&sp=r&sig=GrZD%2ByEy6OVM0uuXMO6vcFCboEtIUk8V2%2BatuXbzMvU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:29.8200644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A29Z&sr=b&sp=r&sig=kg7o4%2FLlBriJ0wOeoQ7%2FK56ZL1ClBsKn30Xcx2kOX8U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:29.8201647Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A29Z&sr=b&sp=r&sig=rE%2Fmw7nJ8OeCxxZ31wdaVECmU6kRpalzzMXBRVCnSTI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:29.8202629Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A29Z&sr=b&sp=r&sig=xaXL8CpdtEinJfdB0rfMusju7TwDZlXAmaZnYnkUvTY%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:29.8203598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A29Z&sr=b&sp=r&sig=NOYectQhg8Xwz%2FvM6OH9szo519TBvpJJtFU%2BS6bQswg%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:29.8204554Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A29Z&se=2024-10-16T06%3A49%3A29Z&sr=c&sp=rl&sig=Wf8TJSc7f8V9nvsQKU%2BFRZukarkyoGpHOGM%2FrO%2FD%2B9s%3D","expireDateTime":"2024-10-16T06:49:29.8205504Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:28.498Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=%2BeVGoDc0uuiqcYPZJgYf07a9u38blhujcTlJkHMd2F0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1647669Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=jtXIQo1ao0zs6t5XGq8HuyQ3sPKmlMOr0TH3hEyX4GM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:39.164498Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=YD3d1QnQYvulWOqEdqlczXqlCGTkWPotcBnNBiAKhBY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1649068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=yC67MLj9Wi0GfloLTEUfJRasplm0KZ%2FVlvN1%2F09pU%2FA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1650021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=hGwS92hE%2FRW8vZjuBUnj5tOoPHtsy8iGiJDgGKO6KiA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1650944Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=OCt%2BV8ZTLrrd0ZOGn3aI98I0UsTx1vBCI0%2F8bjzXDjA%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1651861Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A39Z&sr=b&sp=r&sig=zDgMXKfMVuQymK42g8xtqIOKciAxJez9iypocrpOIdI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:39.1652786Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A14Z&ske=2024-11-07T00%3A05%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A39Z&se=2024-11-06T11%3A10%3A39Z&sr=c&sp=rl&sig=FUxNBj3NiQcYg%2BzGyTjs8VnZnBRnQoDV0%2F6Xu%2F3eLkA%3D","expireDateTime":"2024-11-06T11:10:39.1653691Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4113,17 +4030,17 @@ interactions: connection: - keep-alive content-length: - - '6125' + - '6121' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:29 GMT + - Wed, 06 Nov 2024 10:10:39 GMT mise-correlation-id: - - 88f53d5c-98fb-4a77-91fd-853364f7196f + - ffb99280-e4c1-42a6-9efc-cd374e0a1ef3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054929Z-166cf497cd4q6m55tfpt35bu6000000007xg0000000034ht + - 20241106T101038Z-er1d798b584l2zgthC1SIN681w00000005r0000000002t1n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4145,12 +4062,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-10-16T05:45:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:46:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:47:00.000Z","value":1.0}]}]}' + string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}]}]}' headers: accept-ranges: - bytes @@ -4163,13 +4080,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:30 GMT + - Wed, 06 Nov 2024 10:10:40 GMT mise-correlation-id: - - b9f92d84-2ef2-4259-9c7d-03cfcaae4688 + - 4a5d9cba-9816-4efb-b08e-64d63c7fc437 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054929Z-18489d46dcc7dl74pe8mubs3xc000000057g000000003hte + - 20241106T101039Z-er1d798b584l2zgthC1SIN681w00000005r0000000002t22 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4187,23 +4104,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:30 GMT + - Wed, 06 Nov 2024 10:10:43 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -4219,7 +4136,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1A466D5ED686499BAF928A835D433EDE Ref B: CO6AA3150217031 Ref C: 2024-10-16T05:49:30Z' + - 'Ref A: 93D999B8FC6247FCBC456E97586D00E4 Ref B: MAA201060513023 Ref C: 2024-11-06T10:10:42Z' status: code: 200 message: OK @@ -4233,12 +4150,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A31Z&sr=b&sp=r&sig=v3e88KtmcklYeatb6EHHDvSrkSIANbkjNgT04sDDEXU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:31.1042742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A31Z&sr=b&sp=r&sig=O%2BT180J7XsEBNUlcnNOysct%2FPgpds2qBQmhNqIWEWXg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:31.1037885Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A31Z&sr=b&sp=r&sig=4%2B%2B%2B%2BkSecPoc8Wx2fsc34RMNMSEQYbOvRMk4nmHbtso%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:31.1044372Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A31Z&sr=b&sp=r&sig=aZZb2pZuUbr%2FqRiptThPIkxxMAC18Lww1SpCN%2Fff68A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:31.1045793Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A31Z&sr=b&sp=r&sig=9W4TC%2BoROT15QIKgh1cyCpWcEDn0CF1B5YSl5nzDKrM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:31.1047418Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A31Z&sr=b&sp=r&sig=tsHOhFKu%2BFQGcYG3bcO%2BFg6bIVxAZ8%2BnJAdLfyEBZtw%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:31.104926Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A31Z&sr=b&sp=r&sig=bszPCFoR4LPa%2ByzW2gUsAiHcYTr7KIFzGl2eG2kT98U%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:31.105109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A31Z&se=2024-10-16T06%3A49%3A31Z&sr=c&sp=rl&sig=eSu2wyP6L7SP0g6ItUFeNWYU2LrJKXZkOsIg7E66i9o%3D","expireDateTime":"2024-10-16T06:49:31.1052931Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:28.498Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=NFIZ61VjxCXUpRbUvcFuS4t7SqVsDjGbeoSZdkuYtdk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8832108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=oX8Y3%2BhAPH3xYm90Oca7YEULcNj5OWe3Rbksd9XM78s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:46.8829217Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=k4PKPin5AB23hWYvtPQSHVUSeIHJ0EcZvwhNJaFHOyU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.883308Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=mFzlTQwiXE687269qTOlZ%2BIfXYVGX9X5tDpLwpbNRn0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8834011Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=Xq1H16qcUdFIjVyLZ%2FCzRL7iBhPR83ol62EL9Jo4QcQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8834894Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=kNRZFtO%2FVbs4xF7qkd30Gxs70zotYrrYXoEqsczZLCQ%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.883579Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A46Z&sr=b&sp=r&sig=hMlCeFX7u0s3y3gXRifjUpmP08rNDzNPEKu8%2FyDCQDo%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:46.8836678Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A20Z&ske=2024-11-06T17%3A04%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A46Z&se=2024-11-06T11%3A10%3A46Z&sr=c&sp=rl&sig=QYKS2%2BFnE0JABJYRBlFPxfN4lWJV0FYPus3K8rt3TvU%3D","expireDateTime":"2024-11-06T11:10:46.8837625Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4247,17 +4164,17 @@ interactions: connection: - keep-alive content-length: - - '6125' + - '6112' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:31 GMT + - Wed, 06 Nov 2024 10:10:46 GMT mise-correlation-id: - - 121444d1-adfb-4103-81a5-6b6e40fe572a + - 4ec83262-34b7-459d-aec0-a43cb2329db0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054930Z-18489d46dccgwx6cyqev009zy000000007u0000000006yhb + - 20241106T101045Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050p9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4275,9 +4192,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-definitions?api-version=2024-05-01-preview&metricNamespace=LoadTestRunMetrics response: body: string: '{"value":[{"dimensions":[{"description":"Request Name","name":"RequestName"},{"description":"Engine @@ -4300,13 +4217,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:31 GMT + - Wed, 06 Nov 2024 10:10:47 GMT mise-correlation-id: - - 56b9bc0e-f962-4980-ad0e-73bb098f773e + - 073b377d-87a3-46e1-b04d-0eb05d646824 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054931Z-166cf497cd4z69dq84z53rfxzw00000004z000000000cu3p + - 20241106T101047Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4324,9 +4241,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: string: '{"value":["HTTP Request"]}' @@ -4342,13 +4259,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:31 GMT + - Wed, 06 Nov 2024 10:10:48 GMT mise-correlation-id: - - 6388ca97-9c05-4bf6-9c23-fafceab286a2 + - 085177b9-1397-4f3d-a29d-d51adfbe9c96 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054931Z-166cf497cd4z4rvk0cprvnxxh000000007w000000000av84 + - 20241106T101047Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4366,9 +4283,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/EngineRegion/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/EngineRegion/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: string: '{"value":[""]}' @@ -4384,13 +4301,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:32 GMT + - Wed, 06 Nov 2024 10:10:49 GMT mise-correlation-id: - - 8a8d630d-eb76-4c3a-9887-65416589279a + - c5f7a998-1265-42b4-8d70-7200db9cd42c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054932Z-18489d46dccfp7rz6a82yt7pbw00000007z0000000004b5w + - 20241106T101048Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4413,12 +4330,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-10-16T05:45:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:46:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:47:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"},{"name":"EngineRegion","value":""}]}]}' headers: accept-ranges: @@ -4432,13 +4349,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:33 GMT + - Wed, 06 Nov 2024 10:10:51 GMT mise-correlation-id: - - 92cb5bbd-73ba-4944-81a7-f5ce167ca566 + - e5900d96-a67a-4f17-844f-987570bf9862 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054933Z-15484bdf457fxddfyvtw44f6s00000000360000000004r4b + - 20241106T101049Z-er1d798b5846jstkhC1SINc5v400000005ng0000000050pv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4456,23 +4373,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:33 GMT + - Wed, 06 Nov 2024 10:10:53 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -4488,7 +4405,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 702350B85986445ABDB1FA9757C41F9C Ref B: CO6AA3150220019 Ref C: 2024-10-16T05:49:33Z' + - 'Ref A: 3E94A5ADE6CC471297368631CE3CBAEB Ref B: MAA201060515029 Ref C: 2024-11-06T10:10:53Z' status: code: 200 message: OK @@ -4502,12 +4419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A34Z&sr=b&sp=r&sig=cBERmVWCYQzafELxQuIAKDK4qAqgMrWkpWGrmFro0Eo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:34.4207011Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A34Z&sr=b&sp=r&sig=WESRryrpjUlkirRW64NEFynE7WRVTE90wH3M6UjeMyg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:34.4204282Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A34Z&sr=b&sp=r&sig=RWElvdJNByMdmK5mrHp3fXAuMTCQJwhY8B1KcTVEx%2Bw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:34.4208022Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A34Z&sr=b&sp=r&sig=HKvh6UY8jZI2FKE9X5MezRaaxPbh8dHhV0Hn%2Bcykq3s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:34.4209039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A34Z&sr=b&sp=r&sig=hs%2FhRL%2F8dtqqjwKW%2BwTXOkaB9s%2F3%2FqbAv884xl5%2BtZ8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:34.420995Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A34Z&sr=b&sp=r&sig=xjV7zaB5QyA6Zx33SHvpuW5kiyba%2BsPij5wMSUBrSn4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:34.4210938Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A34Z&sr=b&sp=r&sig=361OijrV4piGjdzBwTATJ5IwlP2vt5HdVU%2FR%2Bqj8hBk%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:34.4211848Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A23Z&ske=2024-10-16T12%3A43%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A34Z&se=2024-10-16T06%3A49%3A34Z&sr=c&sp=rl&sig=xC8%2FU8G2NBxbH%2Ba3e%2B%2B2G%2BwjoMCYxSUfk1TYYuBWas0%3D","expireDateTime":"2024-10-16T06:49:34.4212821Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:28.498Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=8g8UMp7P4mt64NiNYSWMO%2FWWIja1%2BVhFzSw9Lmly03k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0715361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=vAstEdzuSLeYtrIkVDf0H3Hm4mydeTDX3tskQ8m6G14%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:10:57.0710079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=6L1LVNxl5HM%2FJLNyfwMcycVBaZAAzRc2zHue41T7ua0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0716787Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=58xY7V08K0plZ4EjMUeNR%2Fc43UwVw6HerhYzD5777LI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0719951Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=SXITYHA4tASkt5LDWfNG22PVXr%2BzmRBvsuiRI4r3hSI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0721358Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=trBNqnVV6OLxFFwTWClZ%2FUbjrdOhdyEEXhF6calW2bc%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.072438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A10%3A57Z&sr=b&sp=r&sig=Q9COcK2GWfAIifOK%2BittwrRZ4UgzvFGGc%2FXUzr0CYqQ%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:10:57.0725812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A05%3A25Z&ske=2024-11-07T19%3A05%3A25Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A10%3A57Z&se=2024-11-06T11%3A10%3A57Z&sr=c&sp=rl&sig=8y3VbQSgkXYK%2FgHxzItSxcVRkQuocO%2FRRgn8kZ58ocw%3D","expireDateTime":"2024-11-06T11:10:57.0728828Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4516,17 +4433,17 @@ interactions: connection: - keep-alive content-length: - - '6132' + - '6121' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:34 GMT + - Wed, 06 Nov 2024 10:10:57 GMT mise-correlation-id: - - 856429c9-d24a-4a69-9df9-4cb2f88b3e4f + - 158bc082-3450-4873-a4f9-1510d0b1fbb7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054934Z-18489d46dccgwx6cyqev009zy000000007w0000000001u5a + - 20241106T101056Z-er1b6dc89fdfpwdqhC1SG1pbqs00000004z00000000074ac x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4544,9 +4461,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metric-dimensions/RequestName/values?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: string: '{"value":["HTTP Request"]}' @@ -4562,13 +4479,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:34 GMT + - Wed, 06 Nov 2024 10:10:58 GMT mise-correlation-id: - - 415c85e4-9495-4b94-8ce5-d190052e4ca2 + - 10781955-b791-461c-940e-654494b9f410 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054934Z-166cf497cd45mnb2hc29k63vhc00000007rg00000000b1hs + - 20241106T101057Z-er1b6dc89fdfpwdqhC1SG1pbqs00000004z00000000074ba x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4590,12 +4507,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-10-16T05:45:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:46:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:47:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"}]}]}' headers: accept-ranges: @@ -4609,13 +4526,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:35 GMT + - Wed, 06 Nov 2024 10:10:59 GMT mise-correlation-id: - - aad65438-8c5c-4710-8838-6379d8a1e579 + - 470ba0d6-1055-4a46-8839-cec97d3e885e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054935Z-18489d46dcc6jcdlqqc3agq27c00000007w000000000h7ry + - 20241106T101058Z-er1b6dc89fdfpwdqhC1SG1pbqs00000004z00000000074d9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4633,23 +4550,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:46.7021829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:46.7021829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.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":"2024-11-06T10:03:33.8553322Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:03:33.8553322Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:35 GMT + - Wed, 06 Nov 2024 10:11:02 GMT etag: - - '"c5012b80-0000-0200-0000-670f52710000"' + - '"fa00791c-0000-0200-0000-672b3f0b0000"' expires: - '-1' pragma: @@ -4665,7 +4582,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 31B3040EA7E64CC191D1E9DAD736520B Ref B: CO6AA3150217049 Ref C: 2024-10-16T05:49:35Z' + - 'Ref A: C87F6502784A4C88AC05F20B5796B917 Ref B: MAA201060515049 Ref C: 2024-11-06T10:11:01Z' status: code: 200 message: OK @@ -4679,12 +4596,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e025f058-d7d8-4f99-9925-60156447c232":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"61eae012-95ad-400c-bc8b-51ddc7b887d8":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ab0ab6d-aaeb-4025-bf70-9cf6e099c0c7":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/1dd4d61a-8292-4d7f-8a83-2e5e5dd888f3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A36Z&sr=b&sp=r&sig=oa9wjC87dlQ7DMVDbR1voeRNq7RQLHlUbSsFZPrWASA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:36.2118229Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/f300cf81-96e9-4c83-8c9e-6df77312f8a6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A36Z&sr=b&sp=r&sig=bhEnnKmKCD0Ve%2B%2FjjFJhVJ7ykPythO3IXl8L7nQFMVI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:36.2115287Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/b803e0ba-04ba-4794-87b7-67254422347e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A36Z&sr=b&sp=r&sig=SO7t7f2ZMxNDnWD6oxLgcp%2Bmh5zFfRcu%2B1Qj56%2Fevp4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:36.2119064Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/eff9b99b-8b61-4c94-909e-bcf93e8bac4b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A36Z&sr=b&sp=r&sig=qyco2as2Si9GJ89yZS5IDuPoOqopEB%2BZqtDjIjEZ%2BGY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:36.2119893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/e63f85a0-2ddb-471f-aacd-3c42c9747edf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A36Z&sr=b&sp=r&sig=k0bwdEbW%2F1N%2FJxZHdOSBxriVvIL5ykPnQl28zrxluyQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:36.2120831Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A36Z&sr=b&sp=r&sig=5FCf5cmEYC9D%2FX655SdQe1uxqWd6Lea51KSCB2moCLk%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:36.2121693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/28fcb563-72cf-488c-b3d1-bac7e25c27f3/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A36Z&sr=b&sp=r&sig=51wO72ZgH7OjlNHeBQ5hipj0c7ZVTf%2BROanHuJ7WomA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:36.2122538Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://atan1d946xxya2wsgflrlhak.z2.blob.storage.azure.net/d5ba1b2e-7af2-4db3-935f-a011dd17f4ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A24Z&ske=2024-10-16T12%3A43%3A24Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A49%3A36Z&se=2024-10-16T06%3A49%3A36Z&sr=c&sp=rl&sig=ythUf4owWgmBSQuWsn5q7DyIosKNzFnFTBFKcBVqZT8%3D","expireDateTime":"2024-10-16T06:49:36.2123493Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-10-16T05:44:35.447Z","endDateTime":"2024-10-16T05:49:19.192Z","executedDateTime":"2024-10-16T05:44:34.433Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:44:34.877Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:28.498Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"fea3f6ed-ec30-47ad-9dd9-397aa7c874c0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e0639177-ccf9-4582-8ca6-fda71739fc98":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1f2579fe-e31b-4ce3-ba64-7edbe671b549":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/f86ffed2-ef60-4238-bbff-7763d666dc81?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=5YSEFR3mTzpTILPi18cNo8jOTUcqjAchBGP7PTdntqY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0502286Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/3e5fac6d-f6fe-46b2-ae29-37c8562807fd?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=PHxfqzzjuvp9WHGRQqAEInYtGzYrG95wn6fdMeVYxz8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:11:05.0498839Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/9ca59334-94a6-4134-8dc8-821f10a94183?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=ckq2TPz4TgxXiSMEaA2XnM4BNCNmAnKFK%2FhblJdSn1A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0503514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/55838c39-a8a9-4cb0-9291-4fa2389b0156?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=BIQjb10a840TV%2FEzHm%2Bbn2ibExOWNOBKCneHE%2B5jyPk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0504725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/aee7df6d-23e7-4bfc-9d76-f4fbdc97965e?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=dGHkLYXz7cjovzAErAdruwYlz%2BzmktP7WDojTAhxgvY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0505896Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=%2Fcv%2F8P6tn4wU9EUng%2Bs9gCKephOSuMP7j7GUBTlejiE%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.0507074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/db52747f-1a35-4405-92c5-a8d6cb4f3aa7/037be173-54f0-4db5-95f8-8cffc59bc551_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A11%3A05Z&sr=b&sp=r&sig=K1UBANLOM4w%2B8wLu0dBT14GWi9kRXYm4Mssv74NZH8U%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:11:05.050831Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://gur0nrwwu5rb4vhnoulx259i.z22.blob.storage.azure.net/037be173-54f0-4db5-95f8-8cffc59bc551?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A04%3A14Z&ske=2024-11-07T02%3A04%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A11%3A05Z&se=2024-11-06T11%3A11%3A05Z&sr=c&sp=rl&sig=vQxzorJUWDquoGko5%2BWBo%2B%2BvTWUwxj5GwcTqqSfbW%2FE%3D","expireDateTime":"2024-11-06T11:11:05.0509547Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"metric-test-run-case","displayName":"metric-test-run-case","testId":"metric-test-case","status":"DONE","startDateTime":"2024-11-06T10:05:25.534Z","endDateTime":"2024-11-06T10:10:08.535Z","executedDateTime":"2024-11-06T10:05:24.559Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:05:25.05Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:10:14.732Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -4693,17 +4610,17 @@ interactions: connection: - keep-alive content-length: - - '6123' + - '6127' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:36 GMT + - Wed, 06 Nov 2024 10:11:05 GMT mise-correlation-id: - - 8d158c8e-c302-44bc-acda-e95318c41050 + - b379cbb7-cd12-473f-9f29-ab68f431e069 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054935Z-15484bdf4575xp6m65z1ff0ptn000000029g0000000081uu + - 20241106T101104Z-18557d4f7b8bfs5phC1SGE9xxs000000056g00000000tf7g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -4725,12 +4642,12 @@ interactions: Content-Type: - application/json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://279e2ec0-3714-4bc4-8445-fdb5ac1ec8b0.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-10-16T05%3A44%3A35.447Z%2F2024-10-16T05%3A49%3A19.192Z + uri: https://9b3e9c4b-01cf-4b0f-a166-171b841c2772.eastus.cnt-prod.loadtesting.azure.com/test-runs/metric-test-run-case/metrics?api-version=2024-05-01-preview&metricname=VirtualUsers&metricNamespace=LoadTestRunMetrics×pan=2024-11-06T10%3A05%3A25.534Z%2F2024-11-06T10%3A10%3A08.535Z response: body: - string: '{"value":[{"data":[{"timestamp":"2024-10-16T05:45:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:46:00.000Z","value":1.0},{"timestamp":"2024-10-16T05:47:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP + string: '{"value":[{"data":[{"timestamp":"2024-11-06T10:06:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:07:00.000Z","value":1.0},{"timestamp":"2024-11-06T10:08:00.000Z","value":1.0}],"dimensionValues":[{"name":"RequestName","value":"HTTP Request"}]}]}' headers: accept-ranges: @@ -4744,13 +4661,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:36 GMT + - Wed, 06 Nov 2024 10:11:05 GMT mise-correlation-id: - - 453cfab5-35a8-4060-93ec-8989505119ad + - cfd9884d-b4b2-4960-abe4-ea0233c0c7be strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054936Z-15484bdf4578qr4zk1588ep938000000034000000000a7m8 + - 20241106T101105Z-18557d4f7b8bfs5phC1SGE9xxs000000056g00000000tf93 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 adec5bfd2b8..3e241d49f89 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:43 GMT + - Thu, 07 Nov 2024 05:53:01 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 95780A97681447979AB3ACB54F683F02 Ref B: CO6AA3150217053 Ref C: 2024-10-16T05:43:43Z' + - 'Ref A: 2F5B2D0300B044979318C9B9FB174800 Ref B: MAA201060516049 Ref C: 2024-11-07T05:53:01Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:43:43 GMT + - Thu, 07 Nov 2024 05:53:03 GMT mise-correlation-id: - - 85d145ae-0de8-40f1-ba23-e196a62dfff5 + - 3d915901-9b1c-47a6-81ff-9793b44da73a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054343Z-17f5d849667t9hx53vqernxx5800000008b00000000004q9 + - 20241107T055302Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000taxg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"55cd461d-4eef-44f4-ab2a-9636b71d0c92": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "347dd251-ae0e-423d-8f37-dd111e916c42": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "d464cc4d-c286-421e-a9c9-c48e677cf8dd": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "ee2b3a0c-f8e3-442c-a608-6c42a6b75f09": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "e7d60652-01f2-490f-b7d7-6abc74c8239a": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:44.391Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:44.391Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:53:03.641Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:03.641Z","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 connection: - keep-alive content-length: - - '1059' + - '1053' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:44 GMT + - Thu, 07 Nov 2024 05:53:03 GMT location: - - https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview + - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview mise-correlation-id: - - e2606185-3e19-45dc-afdb-50f13972986e + - 3e4cd3bd-b4ae-40c8-8dd2-8f9832e563dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054344Z-17f5d849667h7djshftd289dx000000007wg000000004r8a + - 20241107T055303Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tb16 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:44 GMT + - Thu, 07 Nov 2024 05:53:04 GMT mise-correlation-id: - - 469dedd6-f3ce-4b43-b248-c1f532966335 + - e7433abd-a51d-43d2-9998-efdcaf4d748a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054344Z-17f5d8496674m6s83v2k1qvy2n00000009hg000000006ktu + - 20241107T055303Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tb32 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A45Z&ske=2024-10-16T12%3A43%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A45Z&sr=b&sp=r&sig=ZcCa9WgVNq%2BteGHlREqHNgkzYzS6uu94l9aSas8DuoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:53:45.3213007Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A05Z&sr=b&sp=r&sig=KQQHEzBw%2FeXjhKn9yMSZ5WVhed4LMkONQP5q%2FANwrjA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:03:05.6208404Z","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 connection: - keep-alive content-length: - - '573' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:45 GMT + - Thu, 07 Nov 2024 05:53:05 GMT location: - - https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 47cb47a9-8013-43bb-a981-6531f75d1420 + - f6b3ec72-d951-4378-b2da-4630fb6ebcfb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054344Z-165bfd566cfc2ljhg4xcuns3t80000000770000000002u0r + - 20241107T055304Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tb4h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A45Z&ske=2024-10-16T12%3A43%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A45Z&sr=b&sp=r&sig=ZcCa9WgVNq%2BteGHlREqHNgkzYzS6uu94l9aSas8DuoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:53:45.7014388Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A06Z&sr=b&sp=r&sig=YE6t0Q71syn8u7PUJ3oG6XAoGZblceOOXx6DoLfa2ng%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:03:06.0043704Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:45 GMT + - Thu, 07 Nov 2024 05:53:06 GMT mise-correlation-id: - - 65bd6640-4c34-4790-9a18-51043ef1f836 + - 573c0dce-f34f-482c-afa2-b05210536317 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054345Z-165bfd566cfdmznfsy8bqd99tg00000009n0000000008023 + - 20241107T055305Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tbcg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A47Z&sr=b&sp=r&sig=1nzuW%2B3zh8PcA9HPGpqlZqY6o1aIdbfKCgHgUUWWiXE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:47.1898769Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A07Z&sr=b&sp=r&sig=JBaGzWyD%2F4VTv29F8EbGHIgCChoFBW1vu59m6L%2BIEoQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:07.5767507Z","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 connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Thu, 07 Nov 2024 05:53:07 GMT location: - - https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 274ae65f-6441-4533-850b-578fdcfee16e + - b2bcd31a-f054-49f7-a90d-484fa81b4687 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054345Z-17f5d849667h7djshftd289dx000000007y0000000001zeh + - 20241107T055306Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tbee x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A47Z&sr=b&sp=r&sig=1nzuW%2B3zh8PcA9HPGpqlZqY6o1aIdbfKCgHgUUWWiXE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:47.5054375Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A09Z&sr=b&sp=r&sig=lFSPT%2BU1oQQV5djXes%2Bc6h2WI3FNd48wja1mExBneW4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:09.4215665Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:47 GMT + - Thu, 07 Nov 2024 05:53:09 GMT mise-correlation-id: - - d2fc33f5-f26d-4d12-89d3-5c8536c02bd3 + - 656b0a55-9847-4c4a-9f65-cd7735bc7bc4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054347Z-17f5d849667wqxpvdmyq50u9dc00000006xg00000000fqq1 + - 20241107T055307Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tbs9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A52Z&sr=b&sp=r&sig=3W7NEfQ4tCm9AqSgSWZoNtGwGGaElHZfxWHJGqfxejo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:52.8600553Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A14Z&sr=b&sp=r&sig=Q7ewbYtFfiOSRqBBQCKTG3XTnFj3Cmc1GslWMe611Ok%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:14.7261567Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:52 GMT + - Thu, 07 Nov 2024 05:53:14 GMT mise-correlation-id: - - 1b765d0e-e6e1-41db-9a6b-b18155a9e3b5 + - 76bceb71-a14d-4c53-80fc-ae5ed42c596c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054352Z-18489d46dccfp7rz6a82yt7pbw00000007tg00000000gftz + - 20241107T055314Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tcu2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A58Z&sr=b&sp=r&sig=2aUf2Z6P%2B%2BT8CMBQruGhGx2Kfvv%2BIm46t3sy7M%2Frj7g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:53:58.2575132Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A21Z&sr=b&sp=r&sig=U%2B1j6h8DraGZltJXh5Th37lKjotcMd8GP7S7Zb2Nv2Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:21.0326506Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:58 GMT + - Thu, 07 Nov 2024 05:53:21 GMT mise-correlation-id: - - 3530f6bd-9f0d-4fa7-b6d9-0bb39b37d562 + - 6688d0bb-5d97-4021-a6fc-ecbc5db62b8d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054358Z-18489d46dcc4mwx2ddastu82g800000007tg000000006qv3 + - 20241107T055319Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tdr5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A03Z&sr=b&sp=r&sig=4cVTwZz4RxCicRDv7FRKm3VdBaUN2pe%2FPUphHqXQSA8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:03.6245822Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A27Z&sr=b&sp=r&sig=RnslCszuGGdA3gNlC2qRbSYE0ohfE4rD0lVMteByK7o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:27.333205Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:03 GMT + - Thu, 07 Nov 2024 05:53:27 GMT mise-correlation-id: - - 0e59749b-30dc-4330-a08a-fc614e3dacff + - b92c9ac3-65ce-4f6e-96a2-27fd695bf441 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054403Z-166cf497cd4dfx7788bvx3ssu800000007t00000000087r2 + - 20241107T055326Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000terx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A45Z&ske=2024-10-16T12%3A43%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A09Z&sr=b&sp=r&sig=gvn%2BStgsDiqITls85DETO74VHPOEM2w7GXsVMF8L1eU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:09.4284388Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A32Z&sr=b&sp=r&sig=1EBya95eJ6CbXHcmwRWXxLMqrxXb%2BWeztGWthjoW7Vc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:32.6024635Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:09 GMT + - Thu, 07 Nov 2024 05:53:32 GMT mise-correlation-id: - - 592c1393-22fb-458a-b76e-88771961a7b4 + - 55b123e1-a283-4bcf-a106-209147d2506d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054409Z-166cf497cd4z69dq84z53rfxzw00000004yg00000000ea87 + - 20241107T055332Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tftv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A14Z&sr=b&sp=r&sig=QDevh4%2B7YbjRX%2Fyn2sBXG4MjVrDdo5T6xIRcw5vcbC0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:14.8587274Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A37Z&sr=b&sp=r&sig=S5c7mqFaug1GldA88E55ceI3MrFxx%2FydnUPLiFeR1%2Bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:03:37.8659166Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -567,59 +568,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:14 GMT + - Thu, 07 Nov 2024 05:53:37 GMT mise-correlation-id: - - 9bcae140-00c6-4b24-8973-c1a4d47f83e7 + - 94f9de00-847c-4e32-ae77-7993f682d033 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054414Z-15484bdf4576j5mtr8k4ftgbd400000002q000000000m9xr - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A20Z&sr=b&sp=r&sig=VCrShRY0RnZKHwZGGYGgshI78Q7GdMD1AD7Yuj6PsMk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:20.192955Z","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 - connection: - - keep-alive - content-length: - - '565' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:44:20 GMT - mise-correlation-id: - - ad73fcfa-e6f7-4ef3-8780-8d98dfabc672 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054420Z-17f5d849667b8zgpx3v75uxdz00000000960000000003psv + - 20241107T055337Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tgp7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -729,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A20Z&sr=b&sp=r&sig=TAdDZKbXqwWuPF3hBkANYdTKPXZInbaHvk46ZZ6sknU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:20.6322654Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A39Z&sr=b&sp=r&sig=6294zO9RBXClHnVV5mDzGKbEQRvWO4mnR8tDexTe3jY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:39.1913364Z","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 connection: - keep-alive content-length: - - '556' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:20 GMT + - Thu, 07 Nov 2024 05:53:39 GMT location: - - https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 08ea67c9-54cc-4767-b896-970ea9d5f3e9 + - 93e95495-c787-404a-8245-70e7d527763b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054420Z-165bfd566cfqq8ps4f827fpfh800000001xg00000000fzdz + - 20241107T055338Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tgqe x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A20Z&sr=b&sp=r&sig=TAdDZKbXqwWuPF3hBkANYdTKPXZInbaHvk46ZZ6sknU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:20.960004Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A39Z&sr=b&sp=r&sig=ZeXORsKDLwkauoB9jfjO8EadjDe6iVGY%2BV5XfywwrCc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:39.470742Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -787,17 +746,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:20 GMT + - Thu, 07 Nov 2024 05:53:39 GMT mise-correlation-id: - - 1901b90b-39ea-44b3-ba21-a3a136e0d198 + - f7d48997-3fff-4d8f-b1ff-87d1b7a89c3e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054420Z-165bfd566cf8d7vsev8ncb6400000000062g0000000002vq + - 20241107T055339Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tgz8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A26Z&sr=b&sp=r&sig=uV8qaK%2Fh7V5c%2BaIUJ1vSxID80HoPle2whY521Hw1GYg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:26.2841585Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A44Z&sr=b&sp=r&sig=4Il6r2uD3E%2Bv4Jmzob8VkWyTvVjvEwrFVJRpgTe9i4E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:44.7779995Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -829,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:26 GMT + - Thu, 07 Nov 2024 05:53:44 GMT mise-correlation-id: - - 74b150af-75d6-4d64-bd8f-8030724011f1 + - 78fdadc4-e4e0-4f16-8b6a-ecd272d6c574 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054426Z-165bfd566cf4jq7qqh4q33tppw00000007yg0000000012xx + - 20241107T055344Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000thx5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A45Z&ske=2024-10-16T12%3A43%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A31Z&sr=b&sp=r&sig=LdOpdGd%2BFq9rEwg16Mc%2BvMl5R9V41Kz4m8QJ2aaKW8E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:31.6071955Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A50Z&sr=b&sp=r&sig=CO0zlgMPZ2ZTN4%2FmwdIpXphdhETFXboSsx27NSDgXX0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:50.0488756Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:31 GMT + - Thu, 07 Nov 2024 05:53:50 GMT mise-correlation-id: - - d9a8ed7c-9c34-4dee-98fa-fd032cad4a82 + - c1dfe231-358c-412d-918f-61ca5b409993 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054431Z-165bfd566cfmxlrm0nasv9ne5w000000084000000000dgr4 + - 20241107T055349Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tkre x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A36Z&sr=b&sp=r&sig=67ifhUi7CXgmBsqtSg%2F18wMTaCUAJb3Ht2u3ANCo0zE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:36.9695553Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A55Z&sr=b&sp=r&sig=EVVJX2lCa4pe17zSZ8RpmbKaYKkJ1NmwmN3at0vGz0Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:55.3087862Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:36 GMT + - Thu, 07 Nov 2024 05:53:55 GMT mise-correlation-id: - - 912ee06c-0abd-4dd3-8304-3f4997ba0f7e + - c8f749dc-944f-4629-b512-42ce27f061d7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054436Z-18489d46dccj85r8e2f8g29m2800000007y000000000h5g6 + - 20241107T055355Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tmku x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A42Z&sr=b&sp=r&sig=glmAJb7g0SpiJ1VYeguQhyg7rwOKT%2FQDJTEHWk1hjlU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:42.2436849Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A00Z&sr=b&sp=r&sig=8zOMzJsAStGwwBSYAEqSW8ZvLSs5DTI6nTocWftrXjM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:04:00.5898806Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:42 GMT + - Thu, 07 Nov 2024 05:54:00 GMT mise-correlation-id: - - 81a80e65-7932-4f45-a83a-38cebeda5895 + - b9f2b0cd-2b13-4788-92cb-a56eaafb1592 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054442Z-18489d46dcc7dl74pe8mubs3xc00000005700000000043qm + - 20241107T055400Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tnb2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A47Z&sr=b&sp=r&sig=JFGZaygnx%2BhfpEuFUADYi0usEXIXta75JZu2mixMVLY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:47.6197856Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A05Z&sr=b&sp=r&sig=lDlVbuqQngxALqv3cM306dOlQ9Bgu36rQCh16cV0nqk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:04:05.8661578Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:47 GMT + - Thu, 07 Nov 2024 05:54:05 GMT mise-correlation-id: - - d7f132bf-ce10-4e62-8611-a79dd7e2a3ba + - 2cc78f44-0b2e-4d93-b10e-211de5463270 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054447Z-18489d46dccd6w2hyw4dcpanpw0000000820000000001g1x + - 20241107T055405Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tp2k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A52Z&sr=b&sp=r&sig=DXVZJCYmI6pgb1Yv98skf1MyCt9lRCu4GHOUm%2FDzrAE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:54:52.9832988Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A04%3A11Z&sr=b&sp=r&sig=e0i9M9Ow1w%2Foj4s6BKw%2BbFhtrOPQe9vvKdDj1dlnZ%2Fg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:04:11.1878423Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1039,17 +998,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:52 GMT + - Thu, 07 Nov 2024 05:54:11 GMT mise-correlation-id: - - abe3ed11-5c6c-4fc4-bc7d-728b4f9a0c3d + - 2b395e2a-f597-4257-aae0-e4ac2e5777cb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054452Z-18489d46dcccphr7hbyy83t0cc00000007yg000000007vq4 + - 20241107T055411Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tptd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,13 +1026,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A53Z&sr=b&sp=r&sig=Ddk3MRcfxlLKjPhffAAgL9iz4rMNaIqKmwazKwaqfWE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:53.2145714Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A53Z&sr=b&sp=r&sig=zxi9ArtPsL10eqAexWuvPb%2B26IVxARzeyQ3MWHqch1s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:53.2149728Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A53Z&sr=b&sp=r&sig=rI8VLC9f%2Bvo7xA4ebfWdFiXyyAesh9JgloIhu5ZCGI4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:53.2151532Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:44.391Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:52.756Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A11Z&sr=b&sp=r&sig=X%2BEphOqfXbT8X5S4rSFt1yYBXI9aKDftt1t%2F9RQWEjQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:11.4958232Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A11Z&sr=b&sp=r&sig=O37cqmh1GG5tP%2FwhMA7iVCTv68Gn5NIRECoBLYlcFhQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:11.496395Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A11Z&sr=b&sp=r&sig=TpbtrAFqpeTStXXoBHXNQSwBA9ZJ7ah%2BBxSvv0m7GOc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:11.4964736Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:53:03.641Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:11.034Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1082,17 +1041,17 @@ interactions: connection: - keep-alive content-length: - - '2777' + - '2771' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:53 GMT + - Thu, 07 Nov 2024 05:54:11 GMT mise-correlation-id: - - 37840fd9-94c7-4ca5-8c2f-2c557ab6f54b + - 7969efab-06c5-473d-83b6-feafda5e8e62 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054453Z-15484bdf45792m2k6spfmpcgcc00000002k000000000khgh + - 20241107T055411Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007kg00000000tpu7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1110,23 +1069,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:53 GMT + - Thu, 07 Nov 2024 05:54:13 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -1142,7 +1101,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9E9CF1899F64421FA949164D52F6DB55 Ref B: CO6AA3150220031 Ref C: 2024-10-16T05:44:53Z' + - 'Ref A: 170CC6646BBD41878E348A6AE6CAC113 Ref B: MAA201060516053 Ref C: 2024-11-07T05:54:12Z' status: code: 200 message: OK @@ -1156,13 +1115,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A54Z&sr=b&sp=r&sig=FGHFyaTCehtzmCm4GePDEV9QrgSjOnr2eqvPTjSoO%2Fc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:54.2779791Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A54Z&sr=b&sp=r&sig=mK2%2FDBYpxcbR4h9vDcgu4xkXg2FewK7ionkS4iSbEoQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:54.2784683Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A54Z&sr=b&sp=r&sig=9Au97Z2cyRkmbGLmlU1u%2BRmzg1nwTGtKoChxPXSA6Vc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:54.2786093Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:43:44.391Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:52.756Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A14Z&sr=b&sp=r&sig=YBwLbFq1G10BG4LHFlTWKRWThgE4qF2VqKwvv%2FNZyJk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:14.5854846Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A14Z&sr=b&sp=r&sig=ysWEnkt4gKzNlas5%2FlcwG6PfqcXJLJvJxtViMZzJ3E8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:14.5859411Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A14Z&sr=b&sp=r&sig=ix14XGBXt8lkAHZtiIA0Ld9hYzF25ciW4kzgHeRJCJY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:14.5860874Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:53:03.641Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:11.034Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1171,17 +1130,17 @@ interactions: connection: - keep-alive content-length: - - '2791' + - '2780' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:54 GMT + - Thu, 07 Nov 2024 05:54:14 GMT mise-correlation-id: - - 5dae3062-feba-4430-a8bb-b37466cfe45e + - acec12a1-cec2-4fe0-bc9b-4ad7ff340ebf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054454Z-18489d46dccd6w2hyw4dcpanpw0000000810000000005d8b + - 20241107T055414Z-184f6b5dbd8dndr4hC1MAA4x9s000000077g000000000g9y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,23 +1158,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:54 GMT + - Thu, 07 Nov 2024 05:54:15 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -1231,7 +1190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 45EE7D36A2594C74AED3D092622DE2FA Ref B: CO6AA3150218017 Ref C: 2024-10-16T05:44:54Z' + - 'Ref A: 2741DB37BC6547529CBCFFCC07FC0961 Ref B: MAA201060514039 Ref C: 2024-11-07T05:54:15Z' status: code: 200 message: OK @@ -1245,9 +1204,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1260,15 +1219,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:55 GMT + - Thu, 07 Nov 2024 05:54:17 GMT mise-correlation-id: - - c4c85eec-1f5f-4647-b067-4085a90579ba + - 6c403e12-8db0-4f78-bf5b-45b6dede5467 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054455Z-15484bdf45772jkjsy4g2ytrdw00000002z0000000007ecr + - 20241107T055417Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000063wq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1292,31 +1251,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=nFo8z5zF%2FCf3kRMSa6AeG8Byu0PesgWsUCWGT02%2B7UA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.455049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=R7U3cq8HtGnMnK0YaTTCwushLGMOdxaF6cCkHqkD4tg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:56.4547815Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=5cZWxcs7%2FynEAHq6jTxrIy9kL23BWioz0XIPS75DQe8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.455138Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=K5HINzKm57ld4AyX3ItBCogj9iQ%2BttjaX0tuK8c0sAk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.4553307Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A56Z&sr=b&sp=r&sig=X4Q3Iqm2Yu61LPXCv0Nt5EUiYAlN5K2r7pEhwVXnZB4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:56.4554492Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A52Z&ske=2024-10-16T19%3A44%3A52Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A56Z&se=2024-10-16T06%3A44%3A56Z&sr=c&sp=rl&sig=9NergzvdcSERUpeccFJffWE%2Bp0Zh4cAXPlGrnBpR9W8%3D","expireDateTime":"2024-10-16T06:44:56.455612Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.22Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=t2SJPN5OaelvkfvwmmAbrr1ZCMwoejV%2FdfJLOwysrX8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6434237Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=eQ5dioodm1Jyx5VMb5LpLIx0L%2BfULMWQZGFh1BL6qE4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:20.6432224Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=b5%2FUNs9IdnxhKh6mQevCI3o3vpdKoZLNvSdRP5h8%2BWs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6435106Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=sP6HooiZaVXPhFofUCIfBs5zCIyxyWN3t401uh6baJg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6435984Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A20Z&sr=b&sp=r&sig=90GQ%2FhI04jT9kWVH75QEMAtE2TQCcwO9kQopn5F9gYM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:20.6436841Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A20Z&se=2024-11-07T06%3A54%3A20Z&sr=c&sp=rl&sig=ApSbfi78H8hEDVqiyDTmlnIhTv7NmWEXVXQ6tKQL1J0%3D","expireDateTime":"2024-11-07T06:54:20.6437711Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"ACCEPTED","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:20.407Z","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 connection: - keep-alive content-length: - - '4893' + - '4886' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:56 GMT + - Thu, 07 Nov 2024 05:54:21 GMT location: - - https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2022-11-01 + - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 7ded1b13-bac1-4e92-b911-9b73fcef139e + - f7063320-33a1-4f17-80f8-2cece0eef5aa strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054455Z-18489d46dccmwsl5v24n61fa8400000007y0000000005v5k + - 20241107T055417Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000063xy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1334,54 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A57Z&sr=b&sp=r&sig=Y2nW8HbKpTn6cuwwcY9oTGx7DsmsuzEPm8OTzyLv118%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:57.0365267Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A57Z&sr=b&sp=r&sig=pAcMPWMdfMdK4EYnh7kvhx%2FqL1viJMlEksoH1gEq3tI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:44:57.0360679Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A57Z&sr=b&sp=r&sig=fFreFm%2FYWyZYu%2BDGXZCNGw0QX0rOzM896FQkyI6o9Uw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:57.0367034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A57Z&sr=b&sp=r&sig=HtmzWdI6cjhdG3gYJ7gZHrTZ0rPC2Nc8E%2FsOeTZL27A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:44:57.0368614Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A44%3A57Z&sr=b&sp=r&sig=8LNySbB3dKC2BJgcT74TbP6Jg8wbk2XFObCxEfuuoac%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:44:57.0370602Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A44%3A57Z&se=2024-10-16T06%3A44%3A57Z&sr=c&sp=rl&sig=HONolxsAsuzco8V6d8REsVK716SFc6uY5svty%2F%2Bty5g%3D","expireDateTime":"2024-10-16T06:44:57.0372333Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4946' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:44:57 GMT - mise-correlation-id: - - cd0b37c6-fc51-4ebd-b433-ea3ce1a00a60 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054456Z-18489d46dcc5trkwxb4ya4w12000000007tg000000009uw6 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=G9pmCyWdH3DrtoXV4ctvKp7bnLe1wTNmjfIozNwTMsg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.3948507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=jvv2aEqDAHF6n5Zr%2BiLcGb4vfFUp5LY3LUsblRkgRIU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:02.3944621Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=5hFMGfTUMsQ%2BE1tiRR86qTUJX3%2FCRQmSChPXfduNLmM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.3950206Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=ERw0Z330EbkVcnML843S6QLLLFlZ0sGMVNsBBtRLBYE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.395162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A02Z&sr=b&sp=r&sig=kMeQcVGZZFs4%2FTD55FlYmIf8MC8MC3DQvH7narv4Xh4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:02.3952803Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A02Z&se=2024-10-16T06%3A45%3A02Z&sr=c&sp=rl&sig=0n%2FamxGEb6QvWwtNItyc2Eiob3e5k3DnJ2ZercyBP4M%3D","expireDateTime":"2024-10-16T06:45:02.3953794Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=Cy4UDAiP%2FXlavTLIY3VnN5hSml7RkFoJWNn5Vvczr5s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.0311822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=hq8VUejg983%2B0y8MWRPNxN%2B%2BVIpJbmVqpYfDpeIPkY8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:22.0307544Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=rl3uIpUkRbX7qp12JbrG1%2BsDb9zhl6P8eOgjta8bRHo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.031272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=y66rfNCt06w7sbwMSizj7hkRnZP3tUHbO6e1TPPakDI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.0313591Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A22Z&sr=b&sp=r&sig=cniDYok548%2BbjA%2FY4eyf0xxGqv7%2BbxfsF1Cs4QkFVxY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:22.0314413Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A22Z&se=2024-11-07T06%3A54%3A22Z&sr=c&sp=rl&sig=ZtHvYBAqAMS4TNwU1QLkpd3VKHO4Pl4uns%2FbXuu%2FqeA%3D","expireDateTime":"2024-11-07T06:54:22.0315271Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"NOTSTARTED","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:21.837Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1390,17 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4940' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:02 GMT + - Thu, 07 Nov 2024 05:54:22 GMT mise-correlation-id: - - 18c00cfa-cf35-48b5-ab89-697754f1c315 + - 7eb1da90-3a4d-47e3-b90b-e07c59060bba strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054502Z-15484bdf4576j5mtr8k4ftgbd400000002v0000000005825 + - 20241107T055421Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000642q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=gG8JEfHoa4esBFBQ21pqavueaKPTDDHicu4OnI7WWgo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.6834114Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=DKLd4TlG8UHLMtetuxFK9AHI7J%2BrugF1Ke97r9OCErQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:07.6831853Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=YwNRdGKrfvWGSQnR%2B8oXamuj3KHORIEdr21nywL08zg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.6834629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=3zU4PHzfcQwhhr2OQKdS87mK2ym1EksRLIT0cXlzlNg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.6835107Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A07Z&sr=b&sp=r&sig=9G9RBbBxt%2B5UX%2FKHYwirQL7tnQnjHsHzzQOZP0nkpc0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:07.68356Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A07Z&se=2024-10-16T06%3A45%3A07Z&sr=c&sp=rl&sig=IkwfG1kLhT%2FgMXo%2FgeYORsB%2Fn%2FWQUUa2yFUbSwux7Nw%3D","expireDateTime":"2024-10-16T06:45:07.6836067Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=XNXrmnKQS90eJKnc2Vl34mmcNlycMpC6SGo3JHRzmOM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3296502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=HElocFyJXAGBMCrXw%2FGmGslPhqTyhBRsWGyvzj41grk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:27.3292449Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=D1Nn6hafrATrVOxkVpff8C15%2Fk1%2FouEcW%2Bor4vpj1Kc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3298371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=pyYoTwx3mKy5b11STkHFnK2JBAYLt1UQnDs8MWSgve8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3300093Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A27Z&sr=b&sp=r&sig=jCaq5C2YypNyGGvpViZLYF42wZJRvqPplUdHkgmvLcI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:27.3301767Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A27Z&se=2024-11-07T06%3A54%3A27Z&sr=c&sp=rl&sig=ziDPQlpxCUG6uWRtfNsecT6OPxV1bzjtpo%2BXGL2MJ54%3D","expireDateTime":"2024-11-07T06:54:27.3303521Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1432,17 +1349,17 @@ interactions: connection: - keep-alive content-length: - - '4948' + - '4933' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:07 GMT + - Thu, 07 Nov 2024 05:54:27 GMT mise-correlation-id: - - 0bf1b670-65de-495e-8bcb-c9f08f02fdff + - 08b0cdae-05eb-4594-a0c8-3829d89075ff strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054507Z-165bfd566cffhs2674zxz6xayc000000090g00000000f9ey + - 20241107T055427Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000648p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A13Z&sr=b&sp=r&sig=JLQLdUESjWO8PfZO9CkTuUzxTXY6gbDSE7ScX1IW2rM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:13.0171394Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A13Z&sr=b&sp=r&sig=aXzLaqCmTkuufIb6HSSgIjRAJ3TtbZPvG5MXmEZuVzU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:13.0169157Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A13Z&sr=b&sp=r&sig=8%2FR1GxPDZP9fshpjd9dRfrxxBCxNacc9Tbol5F5zTW4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:13.0172197Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A13Z&sr=b&sp=r&sig=mLhEJtpNIDcAPXN1PZa2%2F52UxvTV7OrfHgnUyQtzl5Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:13.0173146Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A13Z&sr=b&sp=r&sig=qavg7kdrvAkcGVfw%2FRE5x07cj6hGuAI7L4jYXkqHr%2Bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:13.017404Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A13Z&se=2024-10-16T06%3A45%3A13Z&sr=c&sp=rl&sig=JNUnAlSEOjNQQi3HhZINHoJYIbyVDEAt5VI9mXzzFlU%3D","expireDateTime":"2024-10-16T06:45:13.0174858Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=%2FKz0UCVVI1kq%2BGVx%2FPREcGfKSTm9saTtykN%2FrwuNwYk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.6257856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=g9SDgdLL7eY3jLXXnOFJDzzaxHe7XcS35JNT2m5osHw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:32.6250113Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=Nq88qyoTCbDjtXJzRna%2BMIbL7VuCvcdDsAPVSf2KXAI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.626139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=I8pazxfy5mEqSRuqGpUntbIXPREZ9RvRjig89mFvZIo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.626587Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A32Z&sr=b&sp=r&sig=BkSUBPDmd7p9jGEfzfWkMBmJBUkNp3wfRBIzAbFYXEc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:32.6269605Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A32Z&se=2024-11-07T06%3A54%3A32Z&sr=c&sp=rl&sig=oTG%2BRQDxmNPkbCZaFb20HBDJzg%2Bu%2Fm9T6MG%2FjzTaTTA%3D","expireDateTime":"2024-11-07T06:54:32.6271893Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4941' + - '4939' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:13 GMT + - Thu, 07 Nov 2024 05:54:32 GMT mise-correlation-id: - - 7029789d-61a4-4568-8f4d-e9134bea6fd9 + - 4ff6e34a-400c-4761-8c36-d2ddd9fe0328 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054512Z-17f5d849667kzjrv7fd72zv9x000000005z0000000005hx4 + - 20241107T055432Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000064en x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=FH1k9K0193H1GUvtq%2Bx7R1Q2sGeBvvz4P1YnFHfusCs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.3119334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=IwN0O8nrTG%2BV44q%2BbM6T2bWnTSmR5tKxPfZxW9Ztrd8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:18.3114947Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=GUoasxNK7ghBH5uv6LvUNOjgd4qzwF9LuYKqgEiusN0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.312044Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=kc1OLwX8zopnBgvbo%2FPou%2BQdav9H2V2TTV8CYtvRECI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.3121423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A18Z&sr=b&sp=r&sig=f9qVE0HpSnqYtv4%2FO4E0r%2Ffm96BKQTuMj9y1zOI9FYc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:18.3122375Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A18Z&se=2024-10-16T06%3A45%3A18Z&sr=c&sp=rl&sig=cgDEHR2Y2FBxVGCZeijrF39NK1mmqZlKgLCZxR75rR4%3D","expireDateTime":"2024-10-16T06:45:18.3123341Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=yQrwWrvRIHTxQOu1gSz4n5VzJC5Kea4CLi0SxdIuwQQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9579971Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=pAiT0%2BiXSCGYZOLjhraKpl3L3o86wywZfbzaI%2FE6bpM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:37.9572668Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=lDkTHmqsSIBtFPe3LyjB%2BOUByI8iAq8i%2BISVIwvji98%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9582904Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=N6Sc0Bpz9crt%2BSLHQfHjJKyUAUdPk82LqvUnktIs4tc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9586268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A37Z&sr=b&sp=r&sig=dLXsfw5ZiG0LLD7rLfBYwyq%2FiP9pfknnsJiyxV8vpkI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:37.9588815Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A37Z&se=2024-11-07T06%3A54%3A37Z&sr=c&sp=rl&sig=ejyRuIZOSyUnUxr0uMxt2b8FK6w7ZlNpY0nkBJLx9V0%3D","expireDateTime":"2024-11-07T06:54:37.959281Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1433,17 @@ interactions: connection: - keep-alive content-length: - - '4947' + - '4934' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:18 GMT + - Thu, 07 Nov 2024 05:54:38 GMT mise-correlation-id: - - 45af6435-42d5-40ad-86db-add526dba06f + - e2ea1321-584f-4a76-9584-71128e8ea261 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054518Z-17f5d849667bqf6xbnv2zbvn8n00000009e000000000c3t9 + - 20241107T055437Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000064s2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=kZ4ccSXUX1TLzMfx76WUPkgpVXcZoxmQjSTJBizYjIg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.6063618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=xOHveFdVDIgyIUtaOPk7lJsgbth%2FsUJYTr%2F0HPpywoU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:23.6060909Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=9%2BDfiArAe4SW5GKZvNonr2nVAKT%2FsLW05kzytfSmff0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.6064528Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=ulUBUFAKTZjbKHcPteU8P4%2BHyOepwByNz8jpBHzzo%2B8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.6065488Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A23Z&sr=b&sp=r&sig=MYV%2FzfDZVBz65DF7MrDyxfrbdmMdXIB%2BPppMGtHIvkI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:23.6066381Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A23Z&se=2024-10-16T06%3A45%3A23Z&sr=c&sp=rl&sig=7BOYVjNazGoAfOrjxJdXHrKqVqOwPU%2Bipl%2ByteuRjlE%3D","expireDateTime":"2024-10-16T06:45:23.606725Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=mGaN4z0ubEszAu2ERz6vIQ8e8VVkVVgdoMqY9gKaQVg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.2791859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=Z5TLxXTxgNRiTog8b2vxCpI3yORHb9ntbXCiQzQzNwA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:43.2789404Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=KVfmup9sJ1Jju7wMWJTH%2FHN9%2BmWvwi%2BAFlr2rAULlrw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.27927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=SNaphc6JJ1zdVk%2FNenFLqRfFZ8CCuVCED09aR2VlvVU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.2793559Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A43Z&sr=b&sp=r&sig=60WLKN5eMFXGOrGQ271mqYbiFZIJK4lE0DpMSvYKWDk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:43.2794289Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A43Z&se=2024-11-07T06%3A54%3A43Z&sr=c&sp=rl&sig=Q%2BJDAcUPhJdGi0IXqWplZcx5dwvXRmgqzfAsADBoxOU%3D","expireDateTime":"2024-11-07T06:54:43.2795084Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1558,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4953' + - '4931' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:23 GMT + - Thu, 07 Nov 2024 05:54:43 GMT mise-correlation-id: - - df82a7d6-7bb6-4d33-b56c-99344f10a696 + - 5f157d3f-21b8-4ee7-b5c3-82e185c21f30 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054523Z-165bfd566cfd2dxssq2e8pp1zc000000093000000000a5bd + - 20241107T055443Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000064z3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1586,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=2Z4zchUjGqhSflAVhjVRo%2FD3iJaTao8qbtWRB6E%2B30o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.8310594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=t%2Fsr9pv%2F4neA6pMJrDv9yerSLclCr%2BtE6FPW6Gs27Eg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:28.8306063Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=BJGslU5Jlsapg8PdhfUHhMqaY49i%2F6BijKv3ulCzDgQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.8314133Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=ycovHVRe%2BHxb66eP4XPYtnP%2FZmM0Vya7eP2TrS1N2dY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.8315282Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A28Z&sr=b&sp=r&sig=dn9wec6H6HMYTiAAhqVQlXov7aI7bIb%2FtwBReCEkHTQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:28.8318443Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A28Z&se=2024-10-16T06%3A45%3A28Z&sr=c&sp=rl&sig=YPTI5esjL7jEoxVJGruzRgG272SHgBumHgVyA%2BJS%2FZM%3D","expireDateTime":"2024-10-16T06:45:28.8319357Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=IuvLckyfw%2FxVvZawUoKyQYp2UPIdIKJabGIjzd0AkXk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5831133Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=xGVGaCjQnGFNzXUK60czB8KwEeCb5U3%2F9hn8huigL%2Fk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:48.5827052Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=LMrNtfmA742HVqN%2FnWTvVhKabqce0zQM5sd4lRcYsSE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5832058Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=Ue1sie9nr2dU%2FYwnfCXrsQHUesYFdvb6LRVlQywsd%2FU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5832983Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A48Z&sr=b&sp=r&sig=SXSTOipOx%2BINzvfU6ZYAoyJtPSEuXihNSU%2BJoCY7dRg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:48.5833871Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A48Z&se=2024-11-07T06%3A54%3A48Z&sr=c&sp=rl&sig=Ztvy0OvhnTOJpGBVL%2FYhmLP8uPirHgrpnF7R7f5bRRE%3D","expireDateTime":"2024-11-07T06:54:48.5834742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1600,17 +1517,17 @@ interactions: connection: - keep-alive content-length: - - '4956' + - '4941' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:28 GMT + - Thu, 07 Nov 2024 05:54:48 GMT mise-correlation-id: - - ceea820e-f01f-4047-bb3b-b902860d2875 + - 190cf976-5fe3-4c71-9b3d-4da35e57c494 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054528Z-18489d46dccg5n69wa1d0046r400000007g0000000003qma + - 20241107T055448Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000655a x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=dUDg4APENF9i0u5uqfBmtpjUH98D7T99pcQR9tQoDbk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.0166025Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=mvOXESD%2FtMPVld%2FfB%2F3fFzH8QQWUFe65CWPss52Ghvw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:34.0161532Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=hjxEoCdq75a%2FIzx%2FIIFGUGdObvUrY4nnLOc5G8Udiko%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.0167822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=QoZcY%2BnzCGxSsObn3l34T8Yv9Z3liTSB8Nd3t4XmeHs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.01696Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A34Z&sr=b&sp=r&sig=FCuLqCT7hVl09kRX57pxxcBuLEgBWqembczhW8OAW8w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:34.0171366Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A34Z&se=2024-10-16T06%3A45%3A34Z&sr=c&sp=rl&sig=tDo7tlpw9gKxbXZpUJdKssX%2Fb92WsJUksf0gSrAcc0A%3D","expireDateTime":"2024-10-16T06:45:34.0173033Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=V1lqzAGPPcrnO0iR0X%2Bu1Gag6CqBnqtL5hfyErLtg%2FM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.54431Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=2sEFv47tFQjhbpxNYoh76as0frUslS9f%2FTbRtL1pzBw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:54.5407115Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=nsoo5Vq75t%2FMViQQboqQREcfOJO%2Bn5Iv9ypsfr0nnfw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.5443996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=qEtvebK67cqCfQPXi%2B4gXBWgRdjAxyU1%2BoqzjaKNoJo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.5444789Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A54Z&sr=b&sp=r&sig=J%2Fw0xdaVRpXuusByFOZ6r91MsueGAYDEdMyq%2BmbDukY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:54.5445581Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A54Z&se=2024-11-07T06%3A54%3A54Z&sr=c&sp=rl&sig=Ebweo%2F4HCvLSCpBVwXwvNAzx2poMYVuAOOCkjtVnezc%3D","expireDateTime":"2024-11-07T06:54:54.5446449Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4946' + - '4941' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:34 GMT + - Thu, 07 Nov 2024 05:54:54 GMT mise-correlation-id: - - 988bd5b1-baf1-4cac-8ce2-38f54a618aa9 + - 8e8d78ef-621c-4e1d-9a4f-46bb6a8964a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054533Z-18489d46dccp2df8e3m20gzz8w00000007vg0000000078e5 + - 20241107T055453Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065bu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=f46LEj1q4LydQEpXqM1N6PFonAtoj%2BtE%2FAXKqVp0%2Bys%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.3386797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=Yi4UZ9AxASY8eTbmezGTebl3bbtII1kbm%2FsvAQRL6hQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:39.3383361Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=vhz45Rh2txlQgCA%2BCHsEKj21tF7WsQpl1MBd8eohIBU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.3387779Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=s%2FUg98dAWgaFDaMCDYxzJL4%2FKwHIFaQFSxr6gyWedcg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.3388755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A39Z&sr=b&sp=r&sig=eygSh3wf9rPkJtuuFTRHoPKKC0Cgh7kfWO7lOqaREcQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:39.3389713Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A39Z&se=2024-10-16T06%3A45%3A39Z&sr=c&sp=rl&sig=gFL24nz3Ix70Bl6kR2ila8vAVyMBwW8cr8Cp%2BS0JBVU%3D","expireDateTime":"2024-10-16T06:45:39.3390668Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=8GJfqDLM4ZfQys9gDGMY9ghZdjHLGUhN93XuKlbgb88%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8643446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=%2BBNCF4cftRFJqbOsJLT7ielmvjPgz69DUEQHP7OIAyI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:54:59.8639922Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=%2Fwha0qTooMAh%2B72IoCgj%2BgLMqWwxrhBn%2B2XRI5cmBjE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8644363Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=WZOt6sJrV%2FTZsDkY4CMD3nHEAJqiNIkHQm6rvdplwYs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8645691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A54%3A59Z&sr=b&sp=r&sig=SQXkXVaBVKY729ISp80QwAKQoZHUdv%2BQGDsp0Aodoas%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:54:59.8646645Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A54%3A59Z&se=2024-11-07T06%3A54%3A59Z&sr=c&sp=rl&sig=890neHbF9e40MScwArzKc%2FBX7ewyXLZkBQpcYmvdMwg%3D","expireDateTime":"2024-11-07T06:54:59.8647556Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1601,17 @@ interactions: connection: - keep-alive content-length: - - '4950' + - '4939' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:39 GMT + - Thu, 07 Nov 2024 05:54:59 GMT mise-correlation-id: - - cb2cf26e-da5b-49d4-b421-d4f00719a8f5 + - c31f9041-9a78-45d4-ab0d-79eb890957af strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054539Z-165bfd566cfdx5qskkr4cf20yg00000007qg000000006bg3 + - 20241107T055459Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065mu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=YcBHRkol3x12PfSNIG5WBWCT8%2FSxmwC3Rw%2Fq61mO2%2Bw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.6666316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=W450de75rcsfH2aY886d%2BdAGn4D3nZW2%2B8BYdBsUOeA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:44.666215Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=%2BzdGVCocaghuchTbTtorFKPbKqOTSGATTa%2Bwmpisx64%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.6668061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=XKovceqUl1J4akdyA%2FpOuUkiJ4kiebNBmaerI2lv2rE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.6670341Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A44Z&sr=b&sp=r&sig=RJDfE2g2DRFW7KRoJzHnMineEKuZHAza8LpWDBaqB6o%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:44.6671637Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A44Z&se=2024-10-16T06%3A45%3A44Z&sr=c&sp=rl&sig=Fjuo2Y44Byv%2Bhg%2FVS4ryl8%2B1foXvifyurROIc%2FI9Nac%3D","expireDateTime":"2024-10-16T06:45:44.6673023Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=7V750FObwxJn6gNi0oHgARFckEgHfZD%2FKE8IN6lLJCU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.1652814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=Bn446f7v03OjNsrUdnFMtsFJu3NYovd%2F8%2BNgigwcihE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:05.1650478Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=4FGP%2Bwx3J5BIbaKAoohhAdInUaHBQIHba81gkGuv608%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.165344Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=Nv1346Alu9FvSvTvW9J7ffCWMXbhQX3hl65OTNXY%2BzY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.1654055Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A05Z&sr=b&sp=r&sig=rXQTLIyuVd2pNJ03XdTl7ddfekm%2FvIoK5uULjy3x%2BcI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:05.1654652Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A05Z&se=2024-11-07T06%3A55%3A05Z&sr=c&sp=rl&sig=w8o%2Bw87At1M7tSwVGB3q4Qba5DWof5nDoLZKhSbw0%2F4%3D","expireDateTime":"2024-11-07T06:55:05.1655245Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1643,17 @@ interactions: connection: - keep-alive content-length: - - '4957' + - '4940' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:44 GMT + - Thu, 07 Nov 2024 05:55:05 GMT mise-correlation-id: - - 45e7b4c0-1dc0-4269-b5b5-4f5b880c56bd + - 4edad524-7515-41dd-b739-171cac837b17 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054544Z-17f5d849667b4k641769x7f50c00000004eg000000009srr + - 20241107T055505Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065sx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=GJVC5SUz4xygMvOLnVhCKE0K%2BgADSLKc6FYbbCEIc%2BE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.0375078Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=owu12l1KD4fqxRQuyjSzJOgNpzDhZMf4hFXFPSUeLsw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:50.0372346Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=9kDsX7e0lJ9i0w7MgGBzr2fhg0qizBAf%2BEabRKM0ykk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.0375956Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=znSmz%2FJqDtXoAfbUjhpXGPbA1JvXbyz1QwciSk9hM6g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.0376885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A50Z&sr=b&sp=r&sig=SP54APlhLDjdfTE2cHaN0CYM6MmvE6eCGEw%2F8XRM6Xo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:50.037775Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A50Z&se=2024-10-16T06%3A45%3A50Z&sr=c&sp=rl&sig=TDI7NiMcwevAu42nf9jOSadagSeQUcrEDBqadkheEuk%3D","expireDateTime":"2024-10-16T06:45:50.0378567Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:56.976Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=dWr0ThrTNadYaSYxMW%2Bf5VAkCLzB3wi977Ih72yjooQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4824899Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=1BxTb7smZKLrmXARmc1UHPjechM4dGldvWL6Zizu6Z4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:10.4821022Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=2psVlklzuItUPokb4Aocgj%2BWATzb5t%2F%2Fn%2F4LJrP1Qsg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4826592Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=gP10uRJgKP5SKLMtxDkG9FLp6JneDwJhx99Qd0ixAig%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4828283Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A10Z&sr=b&sp=r&sig=kLd4Ffmi81nT25Cg2H0SgYiumQuY3Wsjhmhe0rVueqw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:10.4829966Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A10Z&se=2024-11-07T06%3A55%3A10Z&sr=c&sp=rl&sig=P6TJokjtDVF9uEiBnFQTtdxhAjpZ3WltJgUbSdQOQhs%3D","expireDateTime":"2024-11-07T06:55:10.4831644Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"PROVISIONING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:54:22.038Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4933' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:50 GMT + - Thu, 07 Nov 2024 05:55:10 GMT mise-correlation-id: - - 27800f37-3ee4-4edd-b12d-2f595242e811 + - 03508a62-b240-4758-bdec-b0bd0a3c1eae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054549Z-17f5d8496672vwgf4k1huv853400000006u000000000e7du + - 20241107T055510Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000065y8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=7O6OO9LREI%2Bz2XQMTFszX9yzxcEvEPtd0O1nzOQncPw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.3649818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=WtSB3Uij8xTlkstgrWySHttdJBSAO%2FJEEcxlWC%2B8quk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:55.3647301Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=AZQChQXcMceGGZvIGQ%2BtLnpeTAkfe8pgErsha3xbuGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.365056Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=KPghrSwgN6hfCRnIGY%2BjDJy5oARqlhZQZtEZqjR04Bg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.3651279Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=DAHMQcncZqYWrez2GivUIwB%2F1aq6hv9kKDNnO48AlDM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.3652004Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A55Z&se=2024-10-16T06%3A45%3A55Z&sr=c&sp=rl&sig=j2Jj%2B9xUH6X%2B%2BMSxKLq8JdYfVobUlry5s90%2Fo%2FDOSfk%3D","expireDateTime":"2024-10-16T06:45:55.3652706Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:51.598Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=f%2FuWDz73BoucAv5g2W3Kp4n9rXTd4XT7a6W3XVYJ9fQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7859758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=rSrE2VOVvMduFTBya1rohd460SQGrp83%2F0iwcPmLs%2Fs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:15.7847835Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=UI5NL2ireA6qvi4YnW29ZjdYzfiP1JH7bEjclCrVFnI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7861182Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=1tfbgGzMwaYlGwZ8Vw7F%2BjbfiK8ZqFAwnlt0ASlj5cA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7862604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A15Z&sr=b&sp=r&sig=%2FQ%2BcO03tCT9fEhQs04aVcJtLWImhfwF1pWe8QD6TLXM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:15.7863996Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A15Z&se=2024-11-07T06%3A55%3A15Z&sr=c&sp=rl&sig=HpZcm%2FvVVnNyONDj%2B6piJb9EnN27piHh7Za7dDr3T6o%3D","expireDateTime":"2024-11-07T06:55:15.7865385Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"CONFIGURING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:10.599Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4954' + - '4938' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:55 GMT + - Thu, 07 Nov 2024 05:55:15 GMT mise-correlation-id: - - ec120e7c-498d-4a83-a91e-de752804b281 + - 718e93a8-62a2-4bc9-b8af-ff5a02799ed9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054555Z-165bfd566cfq5wbnrgy8qvqxnn00000009n000000000gny8 + - 20241107T055515Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006647 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=gKA8K19YAiJpIXkTIS7TyFQwe12ISxxwANb5sLIQQAw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.6838604Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=0RYdKPNW34Ma%2B93sii96zLHj4uW5LjsVcrEEFlDyIh8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:00.6834874Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=OoQ7Xf%2FPXCY%2Bupzug51j%2F5ioxI2CVA5na1dBIdANefk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.6839905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=qIwKQNIcFBv%2FRNLamAfHn9rVUHIilDIzQt9CiAb%2B3j0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.6841409Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A00Z&sr=b&sp=r&sig=QeCBYJPINeuNg2mF%2FeUzPNb43N02DGStGR8EahT8oQ0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:00.6843052Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A00Z&se=2024-10-16T06%3A46%3A00Z&sr=c&sp=rl&sig=JDZuFTNSVBIe9%2F0sgWdHo%2BNIopIYLv7sym%2FWtJMl2oE%3D","expireDateTime":"2024-10-16T06:46:00.6844539Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=71pZe7jK9ERnLcxLTmf9DDX60ajzz%2F77jWWMKTBzNUg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0824507Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=f6DFDorVF%2BXeigrrRBFtlprlpr%2BwrGZuwYsKFLo4OsU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:21.0820964Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=fGvKpUfKYWf8L8ANID5JQgI%2Btxl%2Fvmhr4lf%2Fj5asrZk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0826115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=iF%2FWPMVNBcWYcPvqi0oYLYwEhKkUcLDhTW2Oi8Suo9w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0827495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A21Z&sr=b&sp=r&sig=K9xDstlIdRQhOC96thUS%2FrO4tJAKMTNQfRlUHSTIKX4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:21.0828951Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A21Z&se=2024-11-07T06%3A55%3A21Z&sr=c&sp=rl&sig=ujq2YmakgL8g5sSZlarXG0xyF3zBuANvVu3vvzJ3hQU%3D","expireDateTime":"2024-11-07T06:55:21.0830397Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1852,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '4951' + - '4936' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:00 GMT + - Thu, 07 Nov 2024 05:55:21 GMT mise-correlation-id: - - ca8c918c-613e-4dd5-8f5a-bba1b29906bf + - 2a98d3a8-138c-439f-a619-b97306bf870d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054600Z-17f5d8496676mhmt5p9sr0x1bc00000008sg000000002b87 + - 20241107T055520Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000066dz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=98fUFxz2pIMvZ3ovTrgKuA9%2BHY4DQswRYZmiCUKlwhc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.0440758Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=qo7v7%2BRRJUqeSReGYTUPb%2FHUHkZSloICijaboXgzCxg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:06.0438185Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=sJgnEBRTgWgNC5Ycbe9fYTbmHSjGxpJlyy1yRYIuGOo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.0441643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=GU5XivvGqMvPAEGmewAwDIvDs8rBcTlTqhYfPfp4VR4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.0442428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A06Z&sr=b&sp=r&sig=cO7u0M2yyPs%2BQc%2BC9Gsx4JOGpNhrSohPF7RFebvVxjw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:06.0443294Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A06Z&se=2024-10-16T06%3A46%3A06Z&sr=c&sp=rl&sig=UZpErqcT1TqxPplTC1IXbh2pGVTH3ScBJqjfngH0ZVQ%3D","expireDateTime":"2024-10-16T06:46:06.0444108Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=qintkN6P%2FlN3wUhO%2B1OWEVS8Ecifv%2FwGVifUSkKwU6Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.3998908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=uFpJ7OhrgRMm2j7GpV0MO%2F4Z4Y9uREnH%2Fkx%2BNW%2Bleew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:26.3990226Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=wFxfTkr6A1qrTsUQkZKQzfdaXVNVuKHoMF8FfxhJ87M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.4002371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=%2FaqTOs3ZEXcYkkxeciqKPFQPFizw9Da6Ho0z4xXfpVI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.400519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A26Z&sr=b&sp=r&sig=NshCGK3rsmR5kSZM98Ej7nVMIvSXl1fYz0lwtDvb3AU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:26.4008082Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A26Z&se=2024-11-07T06%3A55%3A26Z&sr=c&sp=rl&sig=OIBEqz%2FtJdZ%2FzVLwUwFKwE95cEdQmXpyYfKnszEl3cY%3D","expireDateTime":"2024-11-07T06:55:26.4010849Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1894,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4941' + - '4939' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:06 GMT + - Thu, 07 Nov 2024 05:55:26 GMT mise-correlation-id: - - e93291a4-52c5-4529-92e7-89db15abf6a8 + - 732b33d3-d6db-4481-b2d3-e3dbbe84d2ea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054605Z-17f5d849667qg6t9uvfp3m2p2w00000005p0000000008v6p + - 20241107T055526Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000066qx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1922,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=bYU2q%2FPQlJd%2Bjh90K7ZclCgNm0SZhZhR7bRQ90WRKRQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.3948134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=IlfVRlSW%2FcK%2BmXt7mp5pmd5CtsFW26jkEAaSbjrMim0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:11.3943697Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=RKep34HDfHQkTuSKNNXYNB39Z2ARGz%2BrBfGa7P1cd8Q%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.3949899Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=a5QBd2DH%2B%2F3gPHPx3v9fFTMRsWfdnUp7LfLk7UWuwA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.3951734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A11Z&sr=b&sp=r&sig=NFNRIxPXMW9aV63q7rFR7O89%2FZP9C59yIgoJsqawngU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:11.3954053Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A47Z&ske=2024-10-16T21%3A43%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A11Z&se=2024-10-16T06%3A46%3A11Z&sr=c&sp=rl&sig=AnEJcpL0reyIBeOlbjS7UJrlojbza%2BC9WloeQQ49KA4%3D","expireDateTime":"2024-10-16T06:46:11.3955915Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=ESJ3%2FL3%2BOjznUBOL5xrQBYOPMb2Kwo%2BhPRxFTF3OPsA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7082819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=IcH7Pd6S34T73E46ybXMC0c4L2zUZ6FqE8SGUYN79sc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:31.7078044Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=WRUcO0%2FfL27WEM9LdzHiIyzgSew0i2jPTkLoze56vgA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7084711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=tpGFvrTs124WqIOUc8uWgQJDXjR5lTaylVc7%2B1Y5nqE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7086761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A31Z&sr=b&sp=r&sig=TyfGdi08abISdKlINaTrWCQ%2BzK8bewRx20Tje%2BTsfvk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:31.7088688Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A31Z&se=2024-11-07T06%3A55%3A31Z&sr=c&sp=rl&sig=MfGMuCrjGF9skVKx2rt%2FpzT7gkVIkww9IB7dAjbTYrE%3D","expireDateTime":"2024-11-07T06:55:31.7090612Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1936,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4949' + - '4936' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:11 GMT + - Thu, 07 Nov 2024 05:55:31 GMT mise-correlation-id: - - b4c065a3-2f19-433b-b8c1-5fcc15697c26 + - f0f58c15-3f16-4654-8eab-92829ac7f1a3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054611Z-165bfd566cfrkkwgwcytm810s8000000062g0000000005kq + - 20241107T055531Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000066xf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=OrHJmHKRADyKfZ3Cxu7GHhG6pEAfuzw7uGRhjkwZ4HM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.6853819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=vwkdV4iOTDtfpkTE1zGeX5kdsnZXHCmPkz3kqxLmk9E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:16.6851009Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=aR0b5i7ct%2FKHQRylkHKwtOXFmwUB6IbE87sbP0W8QHY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.6854796Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=mZt7rSaOq6%2BtkzHptHH6ZNZ0PdSuXEOwlqr6uOig5KQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.6855706Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A16Z&sr=b&sp=r&sig=oZsJI7%2BEcupjt2vP5lx18MTvG%2BZOnyXtscqqz2eK%2B%2Bw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:16.6856504Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A56Z&ske=2024-10-17T14%3A44%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A16Z&se=2024-10-16T06%3A46%3A16Z&sr=c&sp=rl&sig=zCJkLMNstkI35C5iIvxC6ItQWGi7D%2FpTxPfXPyDoNQA%3D","expireDateTime":"2024-10-16T06:46:16.6857458Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=QPktqqVtdf1wm0LgYd2mYw670UgTjjwk3e8qR1WgF3Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0285379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=xy3QBjeCKBvi9ra0OJ2f86GBCkptPYawQmWhqywS3jo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:37.0280988Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=YPXQTTKLNVEyqQ%2BNs85gxms3CDWxPUr2aYn7px5hMi0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0287584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=9ZPoWosYDol1N3XBN9sOYnyuDay6et%2BlNuBPZk1X6po%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0289533Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A37Z&sr=b&sp=r&sig=kua%2FIviJqSXMCd12J%2FZET8FSHfWKm3JCbkR9sy6qqSw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:37.0291336Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A37Z&se=2024-11-07T06%3A55%3A37Z&sr=c&sp=rl&sig=BMAo7ASTaq91Cll7rU3ERGqHCVtU7pwGWn00h21tWFs%3D","expireDateTime":"2024-11-07T06:55:37.0293002Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4945' + - '4928' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:16 GMT + - Thu, 07 Nov 2024 05:55:37 GMT mise-correlation-id: - - ccce211c-1140-48f7-abe1-7ad7baaeb9c4 + - c23fc7bf-8767-4235-af4b-9823d5217fa3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054616Z-17f5d849667h7djshftd289dx000000007z0000000000acp + - 20241107T055536Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000674x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=KBNOp2cV3we%2BP93TA%2BM2pHV%2FJ78VzgbBDJLMYeCLB3w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.0975733Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=XlwkkOssFOp9SnuVpaajqWqCzYAMCxa1YxyOidiF%2BOg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:22.0972555Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=iXM%2FRLojPW31PwJNjSX0mTkXOsnwWo5Inl5ww%2FgKodk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.0976737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=7cC8HYq0tCFK35YLtCiXieXrj0kqX47Esn0ud18fRH8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.0977752Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A22Z&sr=b&sp=r&sig=2%2B6SeiEzmKVE6qQluC3qBqzF64HIlIlN0RksTaOqvh0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:22.0978723Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A22Z&se=2024-10-16T06%3A46%3A22Z&sr=c&sp=rl&sig=SEhfHZUkUv%2BwAD2gjGxNjpZAjT7klAn1Hjc5T21gpvM%3D","expireDateTime":"2024-10-16T06:46:22.0979681Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=FlR%2FKpQa4DzqBTA0adFSkoxPjAV33TpRLhQq5OnPh3w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3306738Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=X5ISYCVJ6NdDlnuEGEnJbXGxv6GLwWjLHLcbPLMXcYE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:42.3299243Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=3hrW6v4YJiL%2Fc2S2PxQnBu7TnK8tl0kxXPsdqOL3v1I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3310121Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=URu%2Bt30EVZpAzy93vKTCiF2y81x%2FPvzX0plny8GRg%2Fk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3313505Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A42Z&sr=b&sp=r&sig=sR%2BKeBIVph7GsHho3Z6YB%2BzQRKjiNVufCudRXzR24DQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:42.3316806Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A42Z&se=2024-11-07T06%3A55%3A42Z&sr=c&sp=rl&sig=gAXxDI%2F254T0HaWX6dXDvFsLlgTjYOATndrxMHkuVRM%3D","expireDateTime":"2024-11-07T06:55:42.3320314Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4947' + - '4936' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:22 GMT + - Thu, 07 Nov 2024 05:55:42 GMT mise-correlation-id: - - 45ff9bde-d580-422e-b8d5-dbcf735bfd5b + - 8faacc80-3698-4760-9182-f4fc0eed2870 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054621Z-15484bdf4576j5mtr8k4ftgbd400000002sg00000000d8b2 + - 20241107T055542Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000067aa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=iDYcv6gVAdfQ19AjXltT9o%2F4HkiV8%2FhNVk9LI3Aul1s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.4804132Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=QyAKOgqe1KmqCsHrZqL6WwOWJAV%2F6qqnM7FR3WMQraA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:27.4800454Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=crrELwT31svL2n4Ladd1I7NWmHZ8lg6OJp7R3c7Etiw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.4805541Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=a53OgLYvC8z3c9Em2H2Dyz7SL0t0uA2Da1RHeJt7q48%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.480711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A27Z&sr=b&sp=r&sig=Z7SE07WUEAmJdy6NqYhZ29a0HUSed7PjTB%2B6Q7HTS2A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:27.48085Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A27Z&se=2024-10-16T06%3A46%3A27Z&sr=c&sp=rl&sig=PPoP3eZwlL0TtAogvpLYKl4uHrAfigjDU%2BmMEhPlmgw%3D","expireDateTime":"2024-10-16T06:46:27.4809843Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=2BU6KtlP5gkWNLk%2FmYc82u2Y9K2mj8MRanw5MbzoiRA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6315525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=GSg530wxG3jw9WdgR%2F7VF0069XmQJ9qXXKxd3iAdB4I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:47.6312061Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=JwMx3Hgmk3oMXKok4vzpspcdTH3IY6dCdkE9xzWWptI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6316567Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=Usm1NA11j7UX33TgaIG8xC3dap4d8xNKUtn%2Fb4c73fA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6317525Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A47Z&sr=b&sp=r&sig=gFMlTmm8BaLw%2F3YaZ5BcJxwbReIUVJGKI8NIl0Ftvqo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:47.6318522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A47Z&se=2024-11-07T06%3A55%3A47Z&sr=c&sp=rl&sig=sjcAXN2BMRGqwiFGX%2FnUokUDUXMlBL98L45yK%2F3n6L0%3D","expireDateTime":"2024-11-07T06:55:47.6319425Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +1979,17 @@ interactions: connection: - keep-alive content-length: - - '4938' + - '4932' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:27 GMT + - Thu, 07 Nov 2024 05:55:47 GMT mise-correlation-id: - - 8029eb69-91c4-4b6b-9513-41eb385d4fdf + - 2817d77e-7f1a-4eb0-a544-2f2af59113df strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054627Z-18489d46dcc4mwx2ddastu82g800000007wg000000001186 + - 20241107T055547Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000067gn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=Rvhd5E%2FAjlE9eViLFOGV1f1CCKrJvjDIyepkugwfN3A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.8648426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=cpjl%2FgsqH69YdbcHg7E8KsBdXlhz7xZWywwkyZlse4Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:32.8644895Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=IfHw372lo8aN%2FE8%2BUtywppEW%2FXVLV6yVn2wh%2BtAtZQ0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.8649825Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=BpAthKNkJkZFspmczvDp%2FYHnCKd%2BUcFGfnLc7tPpKMI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.8651546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A32Z&sr=b&sp=r&sig=wCxcL2HUM%2Be8pvvXhHMJ3Ga716LgulrNEBbJKH%2BmjKg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:32.8652863Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A32Z&se=2024-10-16T06%3A46%3A32Z&sr=c&sp=rl&sig=Qe%2BGG2ABa5W8tqdARDgCvmx3wCur5NBARyOaUA5GIH0%3D","expireDateTime":"2024-10-16T06:46:32.8654256Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Z7wZGIJrqVBoDBAI0t9RoU4ph3B%2BZb8ORMCyav52XeY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.916827Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=cFdjxYKQw3CDHuK78giQAWZ3xb5%2B1pmAT%2BtkD9P8I5o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:52.916415Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=7KmJKQ1ZQN6NVFIgG0FbqiftxPWoWQG4GDtcoRFYV0s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9169012Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=Of7Hbob9tztpVIbGOEIL87HAPMp3WhY3TDv4cGqhf08%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.916972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A52Z&sr=b&sp=r&sig=CjwA88rB0aHJ36i%2BHz%2FBgHE0eQLSaE1nCEsj%2FaWUK8k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:52.9170467Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A52Z&se=2024-11-07T06%3A55%3A52Z&sr=c&sp=rl&sig=BR7pgTP7ES1t94nO%2B9F3wew0cLkk0oHwG0nv8hPlqso%3D","expireDateTime":"2024-11-07T06:55:52.9171195Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4953' + - '4931' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:32 GMT + - Thu, 07 Nov 2024 05:55:53 GMT mise-correlation-id: - - ccc851e1-739c-4add-86be-2e231c97c1bc + - cf90636e-062e-488b-a7da-79111307a0ad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054632Z-18489d46dccggs4rh24eyxmvec00000007wg0000000055my + - 20241107T055552Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000067t5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=b9xGgB8NmkW1NgfRHPM3EFQ%2B%2BIEa5atL479RZOR7qNs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.1129933Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=ADsDlXSFxQ5BCMs8rvYigL3Qto5KGRVNaPy9CyK%2B0MM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:38.1127279Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=I2%2BwuvHvf4LK2R90PVkINnTqpwaCjnu7hD%2B%2FCLrbEA0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.1130743Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=%2F%2FQ7y6eTy1L1YeE1pAimoqLRAxS5ys94GA1enRKEjG4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.1131689Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A38Z&sr=b&sp=r&sig=wC9gs0cUhnvcWA43p6zkbxnfeXVU2LdqMMDYoy7NGI8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:38.1132661Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A38Z&se=2024-10-16T06%3A46%3A38Z&sr=c&sp=rl&sig=ZyaadUhVvDvQZRzDG7GYjFXSqnFjVPvt7%2FW7KmPHNi0%3D","expireDateTime":"2024-10-16T06:46:38.1133552Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=3No4TwxPLI%2FcNQhZGWWzHoDJl11KIZNwJa1yf%2BP1TMA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2138334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=kpK5sDfMm9vIBVqcJxP8uOqx3HkbPyuP8yd8q8Q9ZoU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:55:58.2133608Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=2fl1kk12L%2BDEDTeYTsBdTyakV32f7jiczH%2FkbW%2FYY54%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2140105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=GI5ZjxZaltc11fJ6aWwOWl70N%2FO3k51f5UtWMOQ45S4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2142049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A55%3A58Z&sr=b&sp=r&sig=H%2FuY9sg6o%2Fs4GYNbHDWKkwXQV2qiwTM5oUSLRym3hDs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:55:58.2143751Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A26Z&ske=2024-11-07T12%3A53%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A55%3A58Z&se=2024-11-07T06%3A55%3A58Z&sr=c&sp=rl&sig=keVTWZlQjbBD5CxShuqkFgdz%2FYBRl2fVo4YMRf%2FIOUQ%3D","expireDateTime":"2024-11-07T06:55:58.2145528Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2146,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4949' + - '4940' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:38 GMT + - Thu, 07 Nov 2024 05:55:58 GMT mise-correlation-id: - - e9ad6720-acd2-4f42-b523-ed8478e2ce3a + - 531007c9-29d0-41e9-9212-6a79a51fcdbc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054637Z-166cf497cd48w6x2zuxa69f51n00000007z0000000009ngv + - 20241107T055558Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006802 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=I61WQNPNe8P%2BHJJF6vfSYpBVFjvhVqNVgzBvVZ19c5I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.4307737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=mEf2qj%2FKGywQltvwPU4e3zQ9qTXPFOftj%2FkjRIStt%2BE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:43.4305072Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=CJ2FVLLcQ4%2BZ4kYQpo3Q8tnQc%2BeBKwb0a1xBNav9mTE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.4309204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=6eqBVOJjxD1uhRWg9vGm7yyT45p2cO%2F1Y3AmdDQJzG0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.4311027Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A43Z&sr=b&sp=r&sig=0P0RQmgxMgy3BipYVeW2KzVKEGvvZqvpKgYY2fN%2BJL0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:43.4312417Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A43Z&se=2024-10-16T06%3A46%3A43Z&sr=c&sp=rl&sig=Djuska3QVMSCmhN5fUUro4RJt9gjU73vYlViEd%2FKRgg%3D","expireDateTime":"2024-10-16T06:46:43.431384Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=TMyNedUL6yMjmmNrdvZRyyMnuYTj8N0q411nCuOITXM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.5013786Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=3WCnjEHnMo3M7oM68H51bki%2FbK7%2Bhg1utA4%2Fo3%2FY%2FoE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:03.500921Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=ASBxzrtxGDvCUUEP1ToNhicE2UFV%2FWTPsSlF0sFW1us%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.501554Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=dud2EFA4MQ9KgLQ97H3kzi8095mdJMzatFphE80Ck8U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.501725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A03Z&sr=b&sp=r&sig=CBOvCQRBO%2BRL7i8%2FjgP6wJRcSYL5k%2FJzZEIwTSIlJF8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:03.5018951Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A03Z&se=2024-11-07T06%3A56%3A03Z&sr=c&sp=rl&sig=dJNrdIMAQ1qqfSVXv7B9bnenTjqtir4ezAHWWmhewiM%3D","expireDateTime":"2024-11-07T06:56:03.5020626Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +2105,17 @@ interactions: connection: - keep-alive content-length: - - '4948' + - '4935' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:43 GMT + - Thu, 07 Nov 2024 05:56:03 GMT mise-correlation-id: - - 74b4c4db-76f3-4955-8346-ec4b8d71101c + - e33fcc76-7848-453f-a6ac-391045e33a5e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054643Z-18489d46dccmwsl5v24n61fa8400000007t000000000ncxx + - 20241107T055603Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000686u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=22Zfv1qekTlrQ%2BzDdFgiF%2Fqgk5qQ7tMWPUe1in%2FjD6s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.7672955Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=nEBLYwSqcnGTV%2FETfVHKsjDHpnhZy95pPlIdA8uboIM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:48.7669018Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=%2F54Hi46O6R%2Bz%2FoEOMSJw9uT6%2ForabfjxW0KV7xI6mpY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.7674395Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=UhcqZfICqYs4GX4%2BIUs0SQn3xzagzY7UqBIYyNOI99c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.7675811Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A48Z&sr=b&sp=r&sig=43fY5SdVDyY%2FWNs5%2B2mUIIPCn9zIWWWgaZ0FAjbXDM0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:48.7677325Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A48Z&se=2024-10-16T06%3A46%3A48Z&sr=c&sp=rl&sig=vw9sUNH%2BBKb1Z5MVFxzpihxpc9s5L8hu%2F%2BLdyktBQvk%3D","expireDateTime":"2024-10-16T06:46:48.7678734Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=P7nhkfXaRvI5enfzk%2Bq4Ia0pyG3ZDzfW%2BBuOJm9ttuw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8008992Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=nmED8lSw2jzUXTaCMa9Ie6woConcgDiGb6Xmq2rngf0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:08.8006158Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=FUrO%2BAFb79%2ByHjKhZHumTI7Dqwwleskx4t7VY4iQJWQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8010373Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=erOX%2Fx0yWZWnEcmDlsmO7KfDS8S9ADpv85au6N3EokE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8011756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A08Z&sr=b&sp=r&sig=XtyQCqyNZ9WyZdIOLvHHdfpL39xU0o1DjUmZZ8BgI%2Bk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:08.8013123Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A08Z&se=2024-11-07T06%3A56%3A08Z&sr=c&sp=rl&sig=8%2FWvlfDr2SnfwKOhpn%2BexzT1bcg5RCyW9HOP7mD6700%3D","expireDateTime":"2024-11-07T06:56:08.8014501Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2230,17 +2147,17 @@ interactions: connection: - keep-alive content-length: - - '4959' + - '4936' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:48 GMT + - Thu, 07 Nov 2024 05:56:08 GMT mise-correlation-id: - - f26e1f9d-0865-46b8-9782-8d4bd5d4f90f + - 1274228f-dd92-4c02-8a6c-c2262f80a279 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054648Z-166cf497cd48w6x2zuxa69f51n00000007vg00000000hvhd + - 20241107T055608Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000068ek x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=KaRcK%2Bb14yNnpH%2BjbS%2Fs2LeBqqDgX65l67EacDhiLng%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.1315126Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=g5Bczx4mRLo4DkcTVip3JgSSIGCJZDEOSt4ex1GS5NQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:54.1312259Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=ughGfsOL4eHvL%2BR64Nl6zMTgMO5fvXRkXXsdOqLleio%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.1316047Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=JLLqf4mZn4rtuwkrjUsYGFSof%2BtI130GHsT1w9aD29A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.1317054Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A54Z&sr=b&sp=r&sig=%2Fiqmi%2FETEqVtTe3B1%2B1lDPps%2FLKEHEObulHgnFTKCYU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:54.1317931Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A54Z&se=2024-10-16T06%3A46%3A54Z&sr=c&sp=rl&sig=Q%2FRUr5X1QaEgayzoi8moS0Ypsqf1Dlc6omUBDuGfkvE%3D","expireDateTime":"2024-10-16T06:46:54.1318801Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=aV4tFgHxpXfoSvlCZy5KcEcaN141jzU4uNinYyLX9TA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.1079654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=i1wBdUHJKVVM%2B48xev9cEXdlWl%2Fm2H6oB9O9Uz1Sjd4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:14.1069869Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=8Qzhi5%2FwZpaE4XE%2Fd1nzHG3O%2Blo61rkZ3zgdCbNeOeM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.1082987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=aNdhsnk0VLuwiyF36WBHqOO7%2FYVtfbyV5RZBDPrPE6o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.108649Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A14Z&sr=b&sp=r&sig=QxjuKEKhHLhpNCysSgPMjf3tSsv4BvlfHtXxv07J2cM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:14.1088205Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A14Z&se=2024-11-07T06%3A56%3A14Z&sr=c&sp=rl&sig=1sJ2vtlveuz2ZQyHfQ0yKWXT%2FhTx8s1RYj2PHgVgw6Y%3D","expireDateTime":"2024-11-07T06:56:14.1090181Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2272,17 +2189,17 @@ interactions: connection: - keep-alive content-length: - - '4951' + - '4933' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:54 GMT + - Thu, 07 Nov 2024 05:56:14 GMT mise-correlation-id: - - ae4b140f-be84-4407-b8b2-1fa4b1f95212 + - 020af240-297a-457e-b7bc-993589410cca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054653Z-18489d46dccmwsl5v24n61fa8400000007vg00000000cy0w + - 20241107T055613Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000068ph x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=wkd6SuUXzjvuxIh3D3DZBkJitOnlJrcUa5gGzdW2%2Fhk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.5659774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=RnR0KliP%2Bqe8uw5OKCKSSgbcBr1emUq5q%2BSOPO3xnWo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:59.5657668Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=Wb8%2FjbuHt17R6rGEmu7kn1iJlsIDuyee4gbLWFkos%2FI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.5660844Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=iUXzMcAoRlwstPSe5fpIKF65qAyieiOjqMfqfNQuYpo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.5661684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A59Z&sr=b&sp=r&sig=Qg1LRcJSomvh6u11vTcqDJeGHJOeWvzq%2FAYauGmbHUc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:59.5662584Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A59Z&se=2024-10-16T06%3A46%3A59Z&sr=c&sp=rl&sig=6IYZkVnRXDXE8Wqq5KRe3JI9FthI6roRThD3uBrD6%2BU%3D","expireDateTime":"2024-10-16T06:46:59.5663451Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=z%2FZWBRqbRRjxdI6YjRaOfZRkhNRVj%2B%2B4Vx4vJi2%2BquY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4152805Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=4%2FFGXbc%2Fd3JJms%2FgJzlqH99zSmVXRAiG557qGQGWbFk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:19.4150355Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=D5xPKOZyxzGN5lENyGE8s0%2FgJa3sQzMDuDsE2TM06Uc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4153819Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=mQZxdQGEaHuB7HynosXOYyzyGLjMO9zYZjh9Jgm%2FI%2BE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4154815Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A19Z&sr=b&sp=r&sig=a3hsk%2Bb2g%2FVt3VMuiMKvQDKds5CSjc%2BAOe3DuV8ZmGI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:19.4155823Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A19Z&se=2024-11-07T06%3A56%3A19Z&sr=c&sp=rl&sig=A1OSlrFRRQ8SNUcYC4PU3%2BFxPUFfGuppbbaTNQluRBI%3D","expireDateTime":"2024-11-07T06:56:19.4156803Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2314,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4945' + - '4948' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:59 GMT + - Thu, 07 Nov 2024 05:56:19 GMT mise-correlation-id: - - 84d98a41-02f1-4bb7-8175-3af2affa726f + - 495e97c3-b0d5-4ffa-88e5-ca2d59025e4a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054659Z-17f5d849667lpnszgtva63hy30000000098g00000000a0kg + - 20241107T055619Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000068wg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2342,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=y%2FUJw6IkAD44QIES8i6oDDRogvy3QETZrxtPRIo%2Bd74%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.8350947Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=yX5pHbfGg4Sl3pVht08%2Ftm1ywJcSXKTA6YM9%2BhoSVfE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:04.8348209Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=8aceuzMUxQA6szcJbq%2Bg74MXHsqOcQCm7aVMbSwybYE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.8351949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=1%2BA5dWsE18vNV5bf4SQ1XOwBNB0fZgRHtA8FY4sh0Kc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.835294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A04Z&sr=b&sp=r&sig=MMttwlmTvdzcVxrF1LBhnFG%2FiWYzF1i50XwjwimZG4g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:04.8354123Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A04Z&se=2024-10-16T06%3A47%3A04Z&sr=c&sp=rl&sig=fsV%2BwSwu0KuvGBUk2qjWbuzHv6Q8di%2FTcXS6DBOixGs%3D","expireDateTime":"2024-10-16T06:47:04.8355088Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=MO4H82SV2o07FP8RBpwfxnDp4NQwRFmWnc2d5VKZkEo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.714162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=H7Vt2fn%2BbqCn%2Bn0CDUidoPY5YvC76ZYRBtK1wadFnEo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:24.7137782Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=Itl%2B0ojVLN0UcRkURKQWh2T1ylK%2B8OcP7pYCI8U%2FOhg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.7142835Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=cvE5G5RVQeJzH%2FdhtEPUZwbdn1EhqT24dTBMlCbaTb8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.7144167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A24Z&sr=b&sp=r&sig=j%2FNCIek8IiVMQFSs3m72Y%2BztUOMJQT1rhx6phAUpwc4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:24.7145832Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A24Z&se=2024-11-07T06%3A56%3A24Z&sr=c&sp=rl&sig=CXE4HlbslryExoNLDdS9TOYbmy8sZdFHGN8%2FGJ0QdoA%3D","expireDateTime":"2024-11-07T06:56:24.7146944Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2356,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4948' + - '4937' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:04 GMT + - Thu, 07 Nov 2024 05:56:24 GMT mise-correlation-id: - - 42e6689c-1512-413d-8695-8fdf3a0e33ec + - 134749a4-fbf1-41f0-a174-c6098947bd9c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054704Z-17f5d849667bqf6xbnv2zbvn8n00000009d000000000fvbu + - 20241107T055624Z-184f6b5dbd8rh8gjhC1MAAahmc000000077000000000694y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=Yjgu6%2B423JiyNulAYRSs5snydChR%2Bj1mNUt4E5u9J40%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.1508746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=DOq4J9HdwBZOJSVMbJYNd38wdAOFm3DTQlD23hVFewI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:10.1504233Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=%2FPytXUhTA5cszjMJgUrUu9Gufd7b2jShqiKuiPkB%2BXI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.1510413Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=t2giCL7oAVfSjVsZapZoW%2B%2BH%2F%2FivkDTji3AeX4F6zSs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.151168Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A10Z&sr=b&sp=r&sig=BOiGOfLwjD%2FHlBsJNaxkH3uxrLgLlNGeR8lTSX1Ut%2BY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:10.1512998Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A10Z&se=2024-10-16T06%3A47%3A10Z&sr=c&sp=rl&sig=k3UbadVsDzQYQ5cl7iOzHRVu612c%2FNWB2D%2FZFfVBqKs%3D","expireDateTime":"2024-10-16T06:47:10.1514396Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=dQUXNIRCIVgDSlA9ULcG1SaE6pmFuQweVQiqJrzp3SQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.0012834Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=hB416DkvkneeYPa3ukYiAgAS18WtgfEN6LRoqfs3hbM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:30.0008529Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=gzl0BAxKhnuo8NZZOrrH584VWxrrJn62NXgr090gY%2FA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.0014611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=HkOQ4no3NfRFQbdrIc5s8%2B2BjEMU2quY0hMYuaFQHlo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.0016382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A30Z&sr=b&sp=r&sig=a89CyKpUEtzfCt7BK9qWywfdQZmiB51UDEmX6P5urRM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:30.001835Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A30Z&se=2024-11-07T06%3A56%3A30Z&sr=c&sp=rl&sig=fKCCjXp%2BqWC%2BOMAzrBzLYCNezV%2BnoPYvvaz5A4M9VKY%3D","expireDateTime":"2024-11-07T06:56:30.002008Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2398,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4954' + - '4928' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:10 GMT + - Thu, 07 Nov 2024 05:56:30 GMT mise-correlation-id: - - d4198c2e-100b-41b7-a897-a77eb48dfec6 + - 3a4251c9-8255-49fd-9b5a-07953e9fb44e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054709Z-17f5d849667l8zqnh8wn56gx4400000008d000000000k6ad + - 20241107T055629Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000069cv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=O844qElNBCUdhk%2B8IsNhk4Rw6PLvcNraZ5hNdwMHWQI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.4611727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=PO3CPzPziwHn41jSuoTPMh09QTAsyi0oyPTwYKLaeZo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:15.4607678Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=0oqXv9cA%2FHhVcFCGKOzGB%2BY%2BA%2BSr8OzW9S7Y%2Bk6Sq4M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.46134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=tZeVsyAIJSC%2Fyay5at%2FSNhTeNX1hCxngzkEVrnq2d1A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.4615089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A15Z&sr=b&sp=r&sig=Wmtv%2F1C6z3YzucHxVjec62ePFkdgHxLAaGpiX1Fby0M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:15.4617164Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A15Z&se=2024-10-16T06%3A47%3A15Z&sr=c&sp=rl&sig=oDZsb5SDJfupfhCl1U%2FCA1E74AWvh60qg4cXZ4SUWsk%3D","expireDateTime":"2024-10-16T06:47:15.4618831Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=4F42srhRB%2FvD%2FTZFMlunVwBiiV%2BFLQBdclHYtev3Te4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2889696Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=qZrKQd%2B7thPquwnYaE%2FR7Pc29F9o2tjV6DRwg4QEZWM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:35.288684Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=WQDqRNHkiDIdtkttUBO4DOaJG2AATejzQqbFTFVCnPo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2890671Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=GKKyg5lGO7vNnxo0riE7lY%2FCpMAuDHFPkKXshOhgkqw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2891619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A35Z&sr=b&sp=r&sig=GkdFWVPyWCMneLTbt8%2FfQtiN9k0DanyE0vrjuPliNxM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:35.2892886Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A35Z&se=2024-11-07T06%3A56%3A35Z&sr=c&sp=rl&sig=fScCh1vVaWhML8yPQjm8nOgnm7NqVk2q0pfZ5kTjZDk%3D","expireDateTime":"2024-11-07T06:56:35.289393Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4949' + - '4932' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:15 GMT + - Thu, 07 Nov 2024 05:56:35 GMT mise-correlation-id: - - 50062482-9100-4bbd-bc64-06f1bf1a64f6 + - 18b2e3d6-0384-4c8c-8d23-65a7756487f2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054715Z-17f5d8496679ts4r4pwahv9kug00000006mg000000005g66 + - 20241107T055635Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000069md x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=axKHZvQequH2r6N613%2FZQcXvarR2AvRc0Mnqxqxof7A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.7758114Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=c22AGrXtt8aJUJQzmGbUGE2LnTc4OHylPafwAanBpWQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:20.775426Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=9JM6NYK63MGGUxJsM45qA0mRNIfptWZGXfIUT08a6h4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.775947Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=JKUx67h%2B2LfBvjAlqGYjFuZdyWadyynVMSe3x5F8FrI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.7760975Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A20Z&sr=b&sp=r&sig=LfFMt%2B4PldyF4T0dsg8H%2BuNPFzKsVH%2BrV%2B8bMdAZmLs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:20.7762373Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A20Z&se=2024-10-16T06%3A47%3A20Z&sr=c&sp=rl&sig=AUh00wqsUwOMBmJ8jhAvk%2BiSmYcjP59Bo5tXRAkAazk%3D","expireDateTime":"2024-10-16T06:47:20.7763697Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=meCq2Qz%2BGxIDNz30Pr2%2F7ENGuQRPKo9p4GyZ7UNbkw4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5806896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=Bm%2FILHjmmhAPS6W01%2FAD93FRzH5%2F9HL6Rc6Ryhso80Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:40.5804117Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=DvlviuFMWLSEK1JcHR5XrKAX3Y6y1UCjRPZjwnsRd8I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5807818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=oX5eFhf8xjxsGh65ptb5lvWSbRdPVleJrkFKrPoxJxU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5808783Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A40Z&sr=b&sp=r&sig=gPZWAA7CN%2BnbOEYDgMLV%2FMaBJWJbZ5FLi4CpIh%2FIJTk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:40.5809678Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A54%3A21Z&ske=2024-11-08T14%3A54%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A40Z&se=2024-11-07T06%3A56%3A40Z&sr=c&sp=rl&sig=icP8kuPrSqMj8fWpBFjLAX78mCDXwFdRkB2OFI7H1xY%3D","expireDateTime":"2024-11-07T06:56:40.5810566Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4936' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:20 GMT + - Thu, 07 Nov 2024 05:56:40 GMT mise-correlation-id: - - 3f89b379-9b85-4f61-a775-5578bef31e5b + - 25258f23-f851-4331-a6bd-dca906b655f6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054720Z-17f5d8496676bkwfhshcac428800000008f000000000btg3 + - 20241107T055640Z-184f6b5dbd8rh8gjhC1MAAahmc00000007700000000069tq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=qRrpgZnrKVFAtmSniqWUsOOyDgobDUJzatMWSmcNDK0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.1306136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=ZaYMOTcEQdVyBw0NRMP6Y9%2FezcNOR7BIeMTTZ006cXw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:26.1303638Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=Sw83jyW8r%2B89HLjW0gpaCZsNAUZb48Kyo8S7ePKW2F0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.1306799Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=cqh5v4NKdA9oU6b%2BRABIdViQZr27yKanD4bV%2FAOTBMw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.1307445Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A26Z&sr=b&sp=r&sig=0HMmOliL4A0fH%2F2uUZmzX9h6Aii1o%2F7X3I8vkMkVgJM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:26.1308081Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A26Z&se=2024-10-16T06%3A47%3A26Z&sr=c&sp=rl&sig=krGTtRR9T5%2BCOyudfiSJsqyAx0mBl2UsKt4Ashtf0hQ%3D","expireDateTime":"2024-10-16T06:47:26.1308713Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=zXSxPKOIEF0HRByoMtZQNz58sCqJoM%2B3wJuwGVO12h4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.8719705Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=tnq03QvwrwfWvBWOLWOTr6htzNK2SwTrCdr5ymX5TjY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:45.8717163Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=4%2F%2BpAACMr5TEPUuniZ4kaYGUE%2Fekutm5BO%2BLEVSDVso%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.8720536Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=1lF8YOi7ZWyxhBf%2FSJSmCPd5FMmgG9vu2feIiejHk1w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.872136Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A45Z&sr=b&sp=r&sig=tSkfz6wfjumEeBMpDizOrPwRFpV67kDwlilF6pjpYuc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:45.8722152Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A05Z&ske=2024-11-07T12%3A53%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A45Z&se=2024-11-07T06%3A56%3A45Z&sr=c&sp=rl&sig=r9clmLWuk3owbKQwhxSykEJqBhYKIKccoFNcDXctDg4%3D","expireDateTime":"2024-11-07T06:56:45.8722976Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2441,17 @@ interactions: connection: - keep-alive content-length: - - '4945' + - '4931' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:26 GMT + - Thu, 07 Nov 2024 05:56:45 GMT mise-correlation-id: - - 35151564-47d8-4343-a3d2-654ba2ea6fca + - 3a5f3561-23f7-4f0f-bce1-5d1418a6a773 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054725Z-166cf497cd4v8snbtm724w4g2c00000007x000000000gfg6 + - 20241107T055645Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006a1f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=YrP56MKLLlEQXGFF46YmFd8jRmsvfXagxdcGe%2FXTp3Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.4879836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=LWY%2BVQTnJLV2YjaDmb7Jvl42Nsd01FsyRn3%2BPMu8G2o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:31.4875597Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=c3wZAjbXs%2FSExYHDwG9nEdkzD6zXG2x6wlBbDGXQIiw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.4881504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=F9KCzicN4IdAFtsJQrOwGg2%2Bp0aBAMQOy5wkyeV8rAY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.4883182Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A31Z&sr=b&sp=r&sig=W9yNuPg%2BUUdh3ZScE3WhDIuHGmABXWrX%2FEUqG0kyeFo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:31.4884837Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A31Z&se=2024-10-16T06%3A47%3A31Z&sr=c&sp=rl&sig=Z59MH1sB4NLsyZxGURBpiC15WGEX6oQzKgEZIrEkPvQ%3D","expireDateTime":"2024-10-16T06:47:31.4886477Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=VvNvJa47I5hd6BVyjBq3Xm3qtdoOm622%2FZWY8sDgHMI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1712714Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=yLHjbTsmti0thtEWt3AmV03TKpysu3bwQEsWhfuCxts%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:51.1710383Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=zZCb3qEeLVHnRZEGu9oiN1gOjaXOjakx0a7WqWfgJQU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1713384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=oIKhvK%2BrMrvnEpqL5c9wD%2Bkv3Vlg%2B8ytlbCTNrfGv%2Fw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1714031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A51Z&sr=b&sp=r&sig=%2BOkK%2B1VlBt3rQ2%2BCvXTnrM0zJE9NgJZYVVuuJOWwT1Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:51.1714663Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A51Z&se=2024-11-07T06%3A56%3A51Z&sr=c&sp=rl&sig=SgnTFBjuvJSEyvAY2abPJVRE%2Fi8%2BfBFFdidNalNxmtM%3D","expireDateTime":"2024-11-07T06:56:51.1715281Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4945' + - '4940' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:31 GMT + - Thu, 07 Nov 2024 05:56:51 GMT mise-correlation-id: - - 73a42bf3-bf90-4a83-8002-03c4aa76a9e9 + - 2ea354d4-5a21-4db3-ab8b-69515d4bca95 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054731Z-166cf497cd47w9bdc501r87meg00000004g0000000005tcx + - 20241107T055651Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006a9u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2511,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=3DOhs8PgywaF7QiEq4VEyw%2FKaCw7C%2BzwmMExAH6pmSM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.8485229Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=m0c8gMLW3WUubCl3hFgbeboLLQsCRAAgPJxXoq73%2B6E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:36.8481155Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=aeTAgINIQGCHm1UBYwhPllUnW4jJAy73XBbXDWHTNAA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.848692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=mncu6jZGLJU%2FFPMDRnLNenQf2PhSG9RiKy0SdxjSK%2Fg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.8488602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A36Z&sr=b&sp=r&sig=WBeC8Hdbx7w7NeNaJhE6R00vc5LJbmOFDh6%2B%2F3ryUEA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:36.8490269Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A14Z&ske=2024-10-16T12%3A44%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A36Z&se=2024-10-16T06%3A47%3A36Z&sr=c&sp=rl&sig=NKZEv%2BnBXXJmRGoKtfIdd4GjfbaKtR7oI70tMlB7ifU%3D","expireDateTime":"2024-10-16T06:47:36.8491941Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=ZftyfbpJE2OG4PjZZj2bcv5tcFMu%2B9cm6bQjyimtz0Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4652653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=iLXSglmkb%2FyrGqVT%2BcWgfTeNi0sv9EJ5ybo5r%2FE0x7E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:56:56.4648601Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=scjzDl%2Bn%2FNsUwp4GKMuuuPZCZ763FYZsC%2BIY4MOtess%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4654218Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=VgPXKt5rUj19tVLuNpwc2O2M9uc9rSYkwtTLz6tUU2s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4655617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A56%3A56Z&sr=b&sp=r&sig=JVx591aci0%2FLJjugG156S16u9N6GACjkV8GpYEDaWT0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:56:56.4656999Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A56%3A56Z&se=2024-11-07T06%3A56%3A56Z&sr=c&sp=rl&sig=DFKRUzgkOOo9OG6Hj%2Fae42ZBaSg%2F97WgRYKW97jpar4%3D","expireDateTime":"2024-11-07T06:56:56.4658378Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2525,17 @@ interactions: connection: - keep-alive content-length: - - '4946' + - '4940' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:36 GMT + - Thu, 07 Nov 2024 05:56:56 GMT mise-correlation-id: - - a1146720-6591-424a-9f5f-6b7f5c9889e7 + - 5d0de477-6f71-44e6-a129-9937b34adc5b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054736Z-18489d46dccd6w2hyw4dcpanpw0000000820000000001peq + - 20241107T055656Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006ahh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,12 +2553,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=94c1TRFfbcA5eNtoUqDoA7Vm%2FMKJCaDqkUcMjub4plY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.2147932Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=kx7zbGi2uC%2BYLXqhUcXZIox69IOfUZWrByM64hJnthM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:42.2140079Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=SoQTCccJMdSYAbAXy9EkJIqdPE%2FhBFsOpHeChSdE%2B%2Fw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.2151893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=CLIZ8cI6yKNRUk6JBHy4oDEKs13GaOpJ%2Bo%2BK81eMk38%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.2155235Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A42Z&sr=b&sp=r&sig=0NedXTQ1myJoc0vDQX5O0cK0c7obC9mIy8kJWkiGMQg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:42.2158467Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A42Z&se=2024-10-16T06%3A47%3A42Z&sr=c&sp=rl&sig=J6C1Wm%2BOEjeiyfslIcxFTbwp3fVeLE8hEEAWcbIhoYo%3D","expireDateTime":"2024-10-16T06:47:42.2161721Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=3t9cJhRuyLDTRAIkm69KcmgPJkNZ3zQ6HQH0if76BPk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.7739813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=VUdfq352uiOkhYi6TsdCmD4wyJNEUa8xf28gMEvhRZ4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:01.7733623Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=pVHxQDV9A9d5CxJjHXXPKqSL5t3deuQsIYHo8a2Deeg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.7742276Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=S5MKQx907ss9gXhIO%2F1jJXAWvlQDxYAVxqgvg4SzBHo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.774466Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A01Z&sr=b&sp=r&sig=Igxj2pr82NXFhZvTQayBmHcyApX6e9oq0TzZ07zHMG4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:01.774686Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A07Z&ske=2024-11-07T21%3A53%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A01Z&se=2024-11-07T06%3A57%3A01Z&sr=c&sp=rl&sig=knyTjYaVU97zlI6GdUJBxABFvNZLkwqHek0H29WJvhM%3D","expireDateTime":"2024-11-07T06:57:01.7749118Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2650,17 +2567,17 @@ interactions: connection: - keep-alive content-length: - - '4947' + - '4920' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:42 GMT + - Thu, 07 Nov 2024 05:57:01 GMT mise-correlation-id: - - a93f075b-a94d-4c11-8786-0ae0ddb1d5f9 + - 7393e7ef-ce90-4f8c-8944-f36ac6da4cb8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054741Z-166cf497cd4z4rvk0cprvnxxh000000007t000000000kpav + - 20241107T055701Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006as5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2678,12 +2595,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=u3cfY70WxxwIYgwtLoR99rEVlxYfZ%2FzuSTD8TwC9MxY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.5928836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=pysG5GfUmuNr4bfqvo9K1MNzrFCY4pvAsPBvQqX6Q6Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:47.5926006Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=gALuq3oEnHW2o74U%2FHgVEMGOrgAa%2FzLz2J6DeyWRTS8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.5929654Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=lxKSx6QL04fyD1grBixumn2C%2B4XcsDJ2E2NTAB%2FIkT0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.5930564Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A47Z&sr=b&sp=r&sig=1WSwviGOshbuxAdki9KmnxQ2D6F88UtJZzgGi3fM5Uc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:47.5931375Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A20Z&ske=2024-10-16T21%3A44%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A47Z&se=2024-10-16T06%3A47%3A47Z&sr=c&sp=rl&sig=68VQSdNZYCA6Q2hlFYOim%2BdsblPt5DpjYxp182u2yjM%3D","expireDateTime":"2024-10-16T06:47:47.5932313Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:44:56.833Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.721Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=gFy8iTaJ7iIlyKxt11ZIJIqDEfifJDOgNCr3bP%2FAN2E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.075523Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=GzGfwt9jNAQ8YoODA5PY5yI2I%2FoFDuxXHBw%2FjUGAF4w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:07.0751773Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=0B6V%2FT%2BHGJ0gqNintPDGg7xDkC0KhOUjW%2Fe2aSTdmmM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.0756162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=N7mTxs5HmKH8aqo1ZYICAwwAxNn3k15qk0fHQ4HT0GY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.0757147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A07Z&sr=b&sp=r&sig=%2F%2BoTDZICtkUxGinGtIDuUtG3m%2BJehSjgVMBei0aC4Hs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:07.0758033Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A07Z&se=2024-11-07T06%3A57%3A07Z&sr=c&sp=rl&sig=ZSpmDF3FwXGN9JnuJBptxPEbXMAwNOBWGQjiN6S5JPg%3D","expireDateTime":"2024-11-07T06:57:07.0758894Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"EXECUTING","startDateTime":"2024-11-07T05:54:21.837Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:55:15.972Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2692,17 +2609,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4937' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:47 GMT + - Thu, 07 Nov 2024 05:57:07 GMT mise-correlation-id: - - 1d22665b-f631-4e94-8dca-5a3b5ac22a5a + - c44b9388-85ee-4bd9-a706-a3e644685e87 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054747Z-18489d46dcc6jcdlqqc3agq27c0000000820000000002030 + - 20241107T055706Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006axq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2720,13 +2637,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=LRal7QLR1kUutTPIFo3NYEnlKH4W6w3eKuQWvgYsKzc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.1997513Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=4NBxYb5kFyleqKX2uJiThM61uJ5w5wBkjBlUkahwtbQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:53.1992706Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=v%2BSajkYa37ZiHoA58uSInfuyIuhQ%2B4OLxvz8oid84XU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.1999399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=0pnDht9k1PiAXNqtEgq5U5jxVnLzGRDGwA6BJC82dvk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.2001021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A53Z&sr=b&sp=r&sig=6q%2FJawkhW80AL9PFbHpYoNudayJhy897%2FAkPbs09Sk8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:53.200269Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A43%3A58Z&ske=2024-10-16T12%3A43%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A53Z&se=2024-10-16T06%3A47%3A53Z&sr=c&sp=rl&sig=%2F6RBvOzu%2FuvXkhhrg22pcKmUiVWhQsMQ0KC14lbZwD0%3D","expireDateTime":"2024-10-16T06:47:53.2004354Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-10-16T05:44:56.833Z","endDateTime":"2024-10-16T05:47:51.659Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:53.151Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=nnbWOfEf0kxCJBlFBJgE1RAeDmV3R5imLSbhkJe8NgI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3710045Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=rvX6gwJstlLoP3H%2F1o%2FBBUwDamSbcJus4TRhdv0puB0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:12.3706993Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=1vK%2BMLXshZzVpBimY6x0CY1gls2wQ0rEIoYCma9LybY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3710952Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=IQCow5mkAJyfbZ%2BQhEb4BDwT02d7RhIqnLzFI4HFUNQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3711841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A12Z&sr=b&sp=r&sig=TGld%2BX2cMU2AyM33hBQx5quE%2B45lNzjmTY7fOsYV%2BN8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:12.3712837Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A08Z&ske=2024-11-07T12%3A53%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A12Z&se=2024-11-07T06%3A57%3A12Z&sr=c&sp=rl&sig=ui9757sjH86o1ssWxJbUBDVNm3gOn2GROQr9GAr2H7U%3D","expireDateTime":"2024-11-07T06:57:12.3713744Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-11-07T05:54:21.837Z","endDateTime":"2024-11-07T05:57:07.92Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:10.402Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2735,17 +2652,17 @@ interactions: connection: - keep-alive content-length: - - '5070' + - '5061' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:53 GMT + - Thu, 07 Nov 2024 05:57:12 GMT mise-correlation-id: - - de770087-d710-4e12-977b-4a160df1634e + - 37f7f434-8428-4e6c-8cf8-2eb02fa77923 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054752Z-15484bdf457rtsfnfha0z70xv800000002c000000000kgyp + - 20241107T055712Z-184f6b5dbd8rh8gjhC1MAAahmc0000000770000000006b40 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2763,23 +2680,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:53 GMT + - Thu, 07 Nov 2024 05:57:12 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -2795,7 +2712,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EDA649FF9877419A98790993B8131270 Ref B: CO6AA3150219035 Ref C: 2024-10-16T05:47:53Z' + - 'Ref A: FFDDFC107D1B4AAF885EB8B411E5E33F Ref B: MAA201060516011 Ref C: 2024-11-07T05:57:13Z' status: code: 200 message: OK @@ -2809,13 +2726,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=server-metric-test-case + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=server-metric-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"55cd461d-4eef-44f4-ab2a-9636b71d0c92":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"347dd251-ae0e-423d-8f37-dd111e916c42":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d464cc4d-c286-421e-a9c9-c48e677cf8dd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/71164d84-225b-4dc8-99b6-78cdff7330f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=wXWQob3%2F0d%2BZLp%2BFVddhizEgLjrhoIzALl9Soh2u458%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.4123094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/a2d289b0-dafb-4232-a889-09783698d6e4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=5yX9PmkwBrHV%2BXNWvtB1T2OA9MoAYfuCVx2dM43rBiA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:54.4120553Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/bf91e56c-0747-4096-afb1-418d66048a2b?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=ycH5IObbZCenmuYkRhg4LX%2BS7PMOjMZz1B3NXz%2B7p3E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.4123856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/cd553a08-7b39-4bea-9398-5479f38b0643?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=HpZjXWB1%2Bby5rGMqT8xj3l3OqKqfT5A7opPQuqrHVBA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.4124639Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/e8d302b1-875c-431e-adfc-cae7f625c855/4b3d889d-ec9a-4edb-927d-b7a765185b78?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=3o69YJxLJOSlSgbNNX3L9mjkTrcmm3BEXPtUjBSgaYI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.4125384Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://y05r5avrmr3kndmorm232h7b.z35.blob.storage.azure.net/f038c261-f136-481c-b0f7-986777736cd7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A42Z&ske=2024-10-16T12%3A44%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A54Z&se=2024-10-16T06%3A47%3A54Z&sr=c&sp=rl&sig=KCfKgQjB0rQpro9IYdr9PhCm%2FzETP8dYc9cNskjvOXU%3D","expireDateTime":"2024-10-16T06:47:54.4126158Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-10-16T05:44:56.833Z","endDateTime":"2024-10-16T05:47:51.659Z","executedDateTime":"2024-10-16T05:44:55.801Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-10-16T05:44:56.22Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:53.261Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"d3f70816-3e4a-4b7e-9a4a-eb5bacc1dc7e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"ee2b3a0c-f8e3-442c-a608-6c42a6b75f09":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e7d60652-01f2-490f-b7d7-6abc74c8239a":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/076f5802-9ecc-4b6d-b891-c4155e14c6ee?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=m29U2HOEHrs%2FAvwQmACbIig%2Fh6IjwivmnVvTHLTQZ1g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.6375105Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/dfac7513-1dc3-4f80-9988-02b9f89e16c4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=qrHP%2BUl%2Fm6gdlwa4%2BvU%2B0vKZE5ScqCndt%2FI6h1TeDyk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:57:14.6370909Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/ee714c92-1e71-4d45-b290-00b185c79c8c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=cQKLQJI2w3yJdgWf8Nspz00z91bziaPgAf0Z8Hop%2F6c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.6376963Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/51f66afa-c57b-4882-baf9-e3c855d78fb5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=7F%2FcQaZkxGUnrUKdKB71Y46mAuPH%2BugRtXqyLQX2Caw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.637865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/bc438fc6-f183-450d-aeb9-49b3fee098e9/59ac1ddd-9e16-4a9f-8038-2e90d1d41a6f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A57%3A14Z&sr=b&sp=r&sig=pkWoSdFr82CIOYdPP7leDA706qGRIjYLEfsEgrZTgzM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:57:14.638052Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://lsj7jrehmjrk7qtmdop78z1k.z9.blob.storage.azure.net/105175c9-435c-49d3-9f5e-fedbc45e9b34?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A53%3A20Z&ske=2024-11-07T12%3A53%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-07T05%3A57%3A14Z&se=2024-11-07T06%3A57%3A14Z&sr=c&sp=rl&sig=O9JlYEsgZkJhR2rwMIx0Iv60CnV66Ih7CEv%2BaowKONA%3D","expireDateTime":"2024-11-07T06:57:14.6382201Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"server-metric-test-run-case","displayName":"server-metric-test-run-case","testId":"server-metric-test-case","status":"FAILED","startDateTime":"2024-11-07T05:54:21.837Z","endDateTime":"2024-11-07T05:57:07.92Z","executedDateTime":"2024-11-07T05:54:18.088Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/server-metric-test-case/testRunId/server-metric-test-run-case","createdDateTime":"2024-11-07T05:54:20.407Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:10.402Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2824,17 +2741,17 @@ interactions: connection: - keep-alive content-length: - - '5087' + - '5079' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:54 GMT + - Thu, 07 Nov 2024 05:57:14 GMT mise-correlation-id: - - 0cd8e1f8-164f-488d-8268-0f0bff2cffab + - be16b482-7e7e-4308-b061-cc1fea6c94ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054754Z-15484bdf4576j5mtr8k4ftgbd400000002x0000000000ckg + - 20241107T055714Z-16bf8d9b4c7txwfdhC1BOM9ahs00000007ng00000000xxeh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2856,12 +2773,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-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":"2024-10-16T05:43:22.8245110Z","key2":"2024-10-16T05:43:22.8245110Z"},"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":"2024-10-16T05:43:22.9182650Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-10-16T05:43:22.9182650Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-10-16T05:43:22.6682659Z","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":"2024-11-07T05:52:38.3156909Z","key2":"2024-11-07T05:52:38.3156909Z"},"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":"2024-11-07T05:52:38.3938148Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:52:38.3938148Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:52:38.1594446Z","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 @@ -2870,7 +2787,7 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:47:54 GMT + - Thu, 07 Nov 2024 05:57:15 GMT expires: - '-1' pragma: @@ -2884,7 +2801,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FDC5EA8AE2B24D3691096A1A0AEAE90C Ref B: CO6AA3150217049 Ref C: 2024-10-16T05:47:54Z' + - 'Ref A: D81D754C5CF942429EE8C1FB08B43699 Ref B: MAA201060513047 Ref C: 2024-11-07T05:57:15Z' status: code: 200 message: OK @@ -2898,23 +2815,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:55 GMT + - Thu, 07 Nov 2024 05:57:16 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -2930,14 +2847,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FF351EC1B9784C2F8CA952184C63EE5D Ref B: CO6AA3150219037 Ref C: 2024-10-16T05:47:55Z' + - 'Ref A: 44C5E22AE1DA48A5A866B7DEB09F3321 Ref B: MAA201060514033 Ref C: 2024-11-07T05:57:16Z' status: code: 200 message: OK - request: - body: '{"testRunId": "server-metric-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7riocni6mh7x2gezc/providers/Microsoft.Storage/storageAccounts/clitestloadhyudcr7qz": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7riocni6mh7x2gezc/providers/Microsoft.Storage/storageAccounts/clitestloadhyudcr7qz", - "resourceName": "clitestloadhyudcr7qz", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testRunId": "server-metric-test-run-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih", + "resourceName": "clitestload6r573ysih", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -2949,33 +2866,33 @@ interactions: Content-Length: - '520' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-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"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-10-16T05:47:56.167Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:56.167Z","lastModifiedBy":"mbhardwaj@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"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-11-07T05:57:18.319Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:18.319Z","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 connection: - keep-alive content-length: - - '748' + - '742' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:56 GMT + - Thu, 07 Nov 2024 05:57:18 GMT location: - - https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview + - https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview mise-correlation-id: - - 0ecc34b4-8f7a-4f55-ba7d-62c82869b9b2 + - c65be063-891d-4adb-a239-dcf884670f07 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054755Z-18489d46dcc7dl74pe8mubs3xc000000052g00000000gz7n + - 20241107T055717Z-16bf8d9b4c7nn6fjhC1BOM5ufn00000007g000000001e46f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2993,23 +2910,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:56 GMT + - Thu, 07 Nov 2024 05:57:19 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -3025,7 +2942,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 856CD1EE81C94A34AF7C1B85C696C5FB Ref B: CO6AA3150220027 Ref C: 2024-10-16T05:47:56Z' + - 'Ref A: E9E11A7034A64C80887E24AFDA8D693E Ref B: MAA201060515019 Ref C: 2024-11-07T05:57:19Z' status: code: 200 message: OK @@ -3039,12 +2956,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/app-components?api-version=2024-05-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"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-10-16T05:47:56.167Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:56.167Z","lastModifiedBy":"mbhardwaj@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"}},"testRunId":"server-metric-test-run-case","createdDateTime":"2024-11-07T05:57:18.319Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:18.319Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3053,17 +2970,17 @@ interactions: connection: - keep-alive content-length: - - '748' + - '742' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:57 GMT + - Thu, 07 Nov 2024 05:57:21 GMT mise-correlation-id: - - 27f42aef-eb9b-41c5-ac26-ddd40305a7ff + - 1abb5503-5aef-4609-9bfb-83b029eac445 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054757Z-18489d46dccvln7t51fh7vb5kw00000007z000000000fac4 + - 20241107T055720Z-16bf8d9b4c74rffhhC1BOM0zgn00000007fg000000004zgw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3081,23 +2998,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:57 GMT + - Thu, 07 Nov 2024 05:57:22 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -3113,14 +3030,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EAEEF100793546DD819FA107D8673922 Ref B: CO6AA3150219039 Ref C: 2024-10-16T05:47:57Z' + - 'Ref A: 912DF8D2AE9347FAB9E5745C54AF0625 Ref B: MAA201060514025 Ref C: 2024-11-07T05:57:22Z' status: code: 200 message: OK - request: - body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7riocni6mh7x2gezc/providers/Microsoft.Storage/storageAccounts/clitestloadhyudcr7qz/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih/providers/microsoft.insights/metricdefinitions/Availability": {"name": " Availability", "metricNamespace": "microsoft.storage/storageaccounts", - "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7riocni6mh7x2gezc/providers/Microsoft.Storage/storageAccounts/clitestloadhyudcr7qz", + "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih", "resourceType": "Microsoft.Storage/storageAccounts"}}}' headers: Accept: @@ -3132,16 +3049,16 @@ interactions: Content-Length: - '625' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: string: '{"testRunId":"server-metric-test-run-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":"2024-10-16T05:47:56.188Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:58.456Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:23.683Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3150,17 +3067,17 @@ interactions: connection: - keep-alive content-length: - - '3248' + - '3242' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:58 GMT + - Thu, 07 Nov 2024 05:57:23 GMT mise-correlation-id: - - f3a0fa78-0dfc-424b-96b3-208d7095e3d4 + - 2f21e4cc-0b4e-4487-afbe-1d65feaf6874 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054758Z-166cf497cd45mnb2hc29k63vhc00000007tg000000006tws + - 20241107T055723Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007f000000001pvmm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3178,23 +3095,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:58 GMT + - Thu, 07 Nov 2024 05:57:24 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -3210,7 +3127,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F40CEA146FAA4C43A37F3AAC3EA1277B Ref B: CO6AA3150219035 Ref C: 2024-10-16T05:47:58Z' + - 'Ref A: C1C8517DC84644C284C1D18617771C7C Ref B: MAA201060515033 Ref C: 2024-11-07T05:57:24Z' status: code: 200 message: OK @@ -3224,14 +3141,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: string: '{"testRunId":"server-metric-test-run-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":"2024-10-16T05:47:56.188Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:47:58.456Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:23.683Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3240,17 +3157,17 @@ interactions: connection: - keep-alive content-length: - - '3248' + - '3242' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:59 GMT + - Thu, 07 Nov 2024 05:57:26 GMT mise-correlation-id: - - 30a0b96e-d50f-4e1e-8a4b-7fe16a4d791b + - 89e80f83-e928-4bd9-9d60-2a4341cea344 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054759Z-15484bdf457slw4lnr1b940h0g0000000320000000002n0m + - 20241107T055725Z-16bf8d9b4c7b59wqhC1BOM918400000005yg00000001tcuf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3268,23 +3185,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:59 GMT + - Thu, 07 Nov 2024 05:57:27 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -3300,12 +3217,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E193BB828F6342B5BA19AEF3E21E0C86 Ref B: CO6AA3150219011 Ref C: 2024-10-16T05:47:59Z' + - 'Ref A: FDF8C1196EB149C29778D8B223A472AE Ref B: MAA201060514045 Ref C: 2024-11-07T05:57:27Z' status: code: 200 message: OK - request: - body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7riocni6mh7x2gezc/providers/Microsoft.Storage/storageAccounts/clitestloadhyudcr7qz/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testRunId": "server-metric-test-run-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-howbews7pjfw3drjj/providers/Microsoft.Storage/storageAccounts/clitestload6r573ysih/providers/microsoft.insights/metricdefinitions/Availability": null}}' headers: Accept: @@ -3317,14 +3234,14 @@ interactions: Content-Length: - '289' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: - string: '{"testRunId":"server-metric-test-run-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":"2024-10-16T05:47:56.188Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:00.301Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"testRunId":"server-metric-test-run-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":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:28.96Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3333,17 +3250,17 @@ interactions: connection: - keep-alive content-length: - - '2502' + - '2495' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:00 GMT + - Thu, 07 Nov 2024 05:57:29 GMT mise-correlation-id: - - 824d3039-2700-4392-b48f-bc2a6b7af4ee + - bcb8e8cd-7667-45f5-93d0-751280154a2a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054800Z-18489d46dccfkdmbtzwpeeg8f8000000080g000000009u15 + - 20241107T055728Z-16bf8d9b4c7v8mr6hC1BOMh3uc00000007h000000000h05k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3361,23 +3278,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:42:48.5015945Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:42:48.5015945Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.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":"2024-11-07T05:52:00.5096255Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:52:00.5096255Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:00 GMT + - Thu, 07 Nov 2024 05:57:29 GMT etag: - - '"c501fb7f-0000-0200-0000-670f526d0000"' + - '"13011fa6-0000-0200-0000-672c55960000"' expires: - '-1' pragma: @@ -3393,7 +3310,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D7413BF0EBBF4A01B411B7D1268C6134 Ref B: CO6AA3150218045 Ref C: 2024-10-16T05:48:00Z' + - 'Ref A: 0BB447EC6693476CB67CB9A00A91696B Ref B: MAA201060513035 Ref C: 2024-11-07T05:57:29Z' status: code: 200 message: OK @@ -3407,12 +3324,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b2981ca5-9d37-4a8c-8c1c-49f79bf7c9f4.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://b24b9930-5e75-4028-9b96-11bf411dfe4c.eastus.cnt-prod.loadtesting.azure.com/test-runs/server-metric-test-run-case/server-metrics-config?api-version=2024-05-01-preview response: body: - string: '{"testRunId":"server-metric-test-run-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":"2024-10-16T05:47:56.188Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:00.301Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"testRunId":"server-metric-test-run-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":"2024-11-07T05:57:18.342Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:57:28.96Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3421,17 +3338,17 @@ interactions: connection: - keep-alive content-length: - - '2502' + - '2495' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:01 GMT + - Thu, 07 Nov 2024 05:57:31 GMT mise-correlation-id: - - a4c66f29-5b22-474e-8bd2-d1460ca69879 + - 5ec76874-8fbe-49b3-9b02-09603d8aa38c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054801Z-166cf497cd4v8snbtm724w4g2c000000084g000000000w21 + - 20241107T055731Z-16bf8d9b4c7hxwq4hC1BOM82c400000007a000000001szhe x-cache: - CONFIG_NOCACHE x-content-type-options: 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 f1d39aa1f9a..2797ab7f70e 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:56.6510549Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:56.6510549Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5eb7d474-e637-487c-b85c-0aad02e5e47b.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":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:28 GMT + - Wed, 06 Nov 2024 10:12:06 GMT etag: - - '"c5016a83-0000-0200-0000-670f52b20000"' + - '"fa00843c-0000-0200-0000-672b40e70000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 314050CC96DA47C793185F7D503C68EF Ref B: CO6AA3150217011 Ref C: 2024-10-16T05:44:29Z' + - 'Ref A: DAF0598624F94CD39A51DE3AD444AF12 Ref B: MAA201060514027 Ref C: 2024-11-06T10:12:05Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:44:29 GMT + - Wed, 06 Nov 2024 10:12:10 GMT mise-correlation-id: - - 7fe5f917-e43d-425a-8bce-dccf2c0f653c + - b1528be4-ce41-45a5-ab9e-858f2d23ab59 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054429Z-166cf497cd4mqn5ksypuy7gvan00000007zg00000000dqdy + - 20241106T101209Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bk7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"bc5700b4-84dc-4293-a69e-974ef1515057": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "4142d5c8-fabe-4e49-bd72-7f61ceb8eaac": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "584b4308-aa0d-427a-9e0d-4dcba63dfdd1": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"692a36b1-ec00-4c0e-8414-8a962eb90a3a": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "e9151262-f449-450e-8048-2681cdc77147": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "a52157c3-97a2-43f2-95c4-401b58bb1e7e": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:30.342Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:44:30.342Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:11.058Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:12:11.058Z","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 connection: - keep-alive content-length: - - '1050' + - '1044' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:30 GMT + - Wed, 06 Nov 2024 10:12:11 GMT location: - - https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview + - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 9fc3a6e3-69b0-4dc0-8816-b109629ab66c + - 000c7b46-5f40-4937-b253-b009fc87be34 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054429Z-18489d46dcc5trkwxb4ya4w12000000007t000000000b9tg + - 20241106T101210Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:30 GMT + - Wed, 06 Nov 2024 10:12:12 GMT mise-correlation-id: - - 00c867e6-e3b7-446c-99e9-33feaf9b3a4f + - 8f2fcccf-efc2-417e-94ea-55a7eb059a57 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054430Z-166cf497cd4txcnh6qkkc4ez8n000000082g000000000zwm + - 20241106T101211Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A31Z&sr=b&sp=r&sig=gHHlbef9voKlXG84z9ktJrqBn%2BteYEzAECWJuewKRnM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:54:31.3210533Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A12Z&ske=2024-11-06T17%3A12%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A12Z&sr=b&sp=r&sig=BPs%2BuA6D7trp3MV8iAZ8yjG5DA9bMCb4%2BgLNs0k%2F9%2FA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:12.6390932Z","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 connection: - keep-alive content-length: - - '573' + - '579' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:31 GMT + - Wed, 06 Nov 2024 10:12:12 GMT location: - - https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 2ce7f8d0-0016-47fa-8157-0c556c708460 + - 49b05418-0ca5-4d17-8b04-17f4765b0f82 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054430Z-166cf497cd4q6m55tfpt35bu6000000007xg000000002tmh + - 20241106T101212Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A31Z&sr=b&sp=r&sig=gHHlbef9voKlXG84z9ktJrqBn%2BteYEzAECWJuewKRnM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:54:31.7188614Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A13Z&sr=b&sp=r&sig=U4yPx6KZBKWFNl%2BcXEoQPnz3%2Fmrm01nPbe5ieMBXNVI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:13.1031706Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:31 GMT + - Wed, 06 Nov 2024 10:12:13 GMT mise-correlation-id: - - f842f3c9-be7b-4272-aa8e-bbbd43b39e96 + - a3f04deb-e926-4e36-81f9-414947204fce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054431Z-18489d46dccp2df8e3m20gzz8w00000007vg0000000075xm + - 20241106T101212Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A32Z&sr=b&sp=r&sig=4EfEcTDWFYDDk10gtSKfUgen1xLEfH8r8Dt0C5JUJBg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:32.2358453Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A14Z&sr=b&sp=r&sig=%2FMe84Jwpeo9bPLbX0Ff5RfgnpwUw9evHRl95kwdxbm0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:14.0769998Z","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 connection: - keep-alive content-length: - - '568' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:32 GMT + - Wed, 06 Nov 2024 10:12:14 GMT location: - - https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 98bb4082-20a4-4a7d-ba1c-1784d902fa07 + - 9c9b3bf3-ab8f-4207-a7e7-07ac5f2e10e9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054431Z-18489d46dccj85r8e2f8g29m2800000007xg00000000netx + - 20241106T101213Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bks x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A32Z&sr=b&sp=r&sig=dYZoiIuHmldcwlbujYTvJ0wXhpvLiRqNvUH%2BHEVF3sk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:32.6193122Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A14Z&sr=b&sp=r&sig=%2BPlFrlza5daQAWVCRcXqj68qNuttfFCBCXFOKCUI2o8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:14.5470436Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -361,13 +362,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:32 GMT + - Wed, 06 Nov 2024 10:12:14 GMT mise-correlation-id: - - c15555d0-7549-41b9-a2c9-c72257f2884a + - d4368ab7-c03e-4700-83a0-db8132314ac7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054432Z-166cf497cd4r6hmp97992txd7w000000081g000000002t5t + - 20241106T101214Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bkz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A38Z&sr=b&sp=r&sig=FvYnjm7gbbuCxl0Oi9Yb8jIzbK%2By0OLnOrziyrisC%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:38.0238604Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A20Z&sr=b&sp=r&sig=Qt4ESq8irOJkPTvBFkdvhKkof9f77Cx8xyE7Xt8GLg0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:20.9690701Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:37 GMT + - Wed, 06 Nov 2024 10:12:21 GMT mise-correlation-id: - - f5b68ead-7d45-4dcd-baef-4576e04256b8 + - afd90945-92a8-413a-8817-35937c1e4e9f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054437Z-166cf497cd48w6x2zuxa69f51n0000000810000000004yd5 + - 20241106T101219Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bmm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A43Z&ske=2024-10-16T12%3A44%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A43Z&sr=b&sp=r&sig=mn6dPTCpMPzLFncDVNsa8rMHF%2FofXlbRgR4iw0gEkcQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:43.390637Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A26Z&sr=b&sp=r&sig=RrEgAZ0InbjeGCWjPA7OriNJmvyw6Ip%2FD63hfcC4JzE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:26.4203203Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:43 GMT + - Wed, 06 Nov 2024 10:12:26 GMT mise-correlation-id: - - 99b487ec-51e6-43e7-92c9-1f8987234c77 + - fc2075bf-fc49-46f1-b31d-c09fa08cc7c9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054443Z-17f5d8496675bvlhwnegd9cxen00000007rg000000005k3q + - 20241106T101226Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bnb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A48Z&sr=b&sp=r&sig=%2FmvJuOIyGuFk7YJ59HjnGQu7%2BEQw4FVx09%2Fiij6QFm8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:48.7532682Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A31Z&sr=b&sp=r&sig=i1q0C90zPmoL56xMoEbxdNFSykyXF7i1LselKJLHo8U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:31.8186708Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:48 GMT + - Wed, 06 Nov 2024 10:12:31 GMT mise-correlation-id: - - c9054088-d2ff-4f7b-809b-b67f34a8e84f + - 722d5c44-7e49-466e-95d2-8c4bf2739c22 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054448Z-17f5d849667qg6t9uvfp3m2p2w00000005pg0000000083d4 + - 20241106T101231Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bnz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A54Z&sr=b&sp=r&sig=IiAV%2BFn2tiAr%2FZDNwdACEo4HGRCZgFMh0JvDwBaqymI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:54.0799933Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A37Z&sr=b&sp=r&sig=y367ygH93n0O3BeEzR1cvnRbIgIaExp4VXg4%2B%2FxrGxc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:37.2780575Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -529,13 +530,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:54 GMT + - Wed, 06 Nov 2024 10:12:37 GMT mise-correlation-id: - - cbc54359-4c6f-4455-813b-c20759892440 + - 71e8bc13-5d3c-43b1-8307-ee06b833143e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054453Z-165bfd566cffhs2674zxz6xayc000000097g000000001dec + - 20241106T101237Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bpn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A43Z&ske=2024-10-16T12%3A44%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A54%3A59Z&sr=b&sp=r&sig=9GR4A%2Fj9yIhPfoES1%2Bftck9jkpTIsISm6FCxsvW1SpE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:54:59.3856565Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A42Z&sr=b&sp=r&sig=QyZ%2BMmXjKXkpCBhdV5vh%2FZjqeZ%2BfWf4uL7XkycT77HA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:42.6789414Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -571,97 +572,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:44:59 GMT - mise-correlation-id: - - acb02368-2490-4e82-852e-8f94cf6674d8 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054459Z-17f5d8496675cv7vvzee97tr8n00000009sg00000000384q - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A04Z&ske=2024-10-16T12%3A45%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A04Z&sr=b&sp=r&sig=Qjs8DVFCQBnFG0ZI2%2FZvrKieX3EVk6tb2F%2B5B9%2Bp1LQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:04.740131Z","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 - connection: - - keep-alive - content-length: - - '573' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:45:04 GMT + - Wed, 06 Nov 2024 10:12:42 GMT mise-correlation-id: - - b7d2e166-1677-450b-bcfc-6e32dc1dab6c + - 38c3d830-1914-4928-8571-de12cfeefa39 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054504Z-17f5d849667q42pgsnc7zsyqc400000006m0000000006ypx - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A04Z&ske=2024-10-16T12%3A45%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A10Z&sr=b&sp=r&sig=dJfFShILf9Hbb8M5RcKgmmFgNTO73hpYzDuWFleDo38%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:55:10.0200431Z","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 - connection: - - keep-alive - content-length: - - '566' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:45:10 GMT - mise-correlation-id: - - 255b925a-aaa4-4ae4-9c0e-ca17065f741f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054509Z-165bfd566cf626cbrvmzsprhfs00000007400000000015x0 + - 20241106T101242Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bqf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -771,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A10Z&sr=b&sp=r&sig=qajO%2FaK%2B%2BCaFxrpVTObqOsxB98tdgrB8UmnfRt2XsaE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:10.509244Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A43Z&sr=b&sp=r&sig=JKkD03finEmf5OivB7Kg5%2BPg3uZHt50OTTyUbfvFB3s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:43.340986Z","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 connection: - keep-alive content-length: - - '561' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:10 GMT + - Wed, 06 Nov 2024 10:12:43 GMT location: - - https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - b1e3d966-aa10-410b-9985-c253e2a31678 + - 85631b73-51c3-4c50-984a-7c552ea7d794 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054510Z-17f5d849667tvht4m3rc1u623400000008tg000000008x2a + - 20241106T101242Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bqk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A10Z&sr=b&sp=r&sig=M5yKpr8BZhbOkyWbRfZisY5LQLy%2BYA5lfx4VJVchIBk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:10.9114201Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A43Z&sr=b&sp=r&sig=Q%2B1Ol8q30kthH3yG42FpKrjLk33vxO2TBLbFZDJ2Ul0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:43.8778795Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -833,13 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:10 GMT + - Wed, 06 Nov 2024 10:12:43 GMT mise-correlation-id: - - c0c41fc9-2292-49e5-bc01-30975a4c5fba + - 6e9eea8e-660d-490b-904b-341fccb7e3ac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054510Z-17f5d849667ldxhfw3zcavh8t800000008dg00000000b0b8 + - 20241106T101243Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bqq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A43Z&ske=2024-10-16T12%3A44%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A16Z&sr=b&sp=r&sig=wXidZQyvxEzp7KbxyVQQJ03ZOz9pkicZsuMuyrEnDRk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:16.1407516Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A49Z&sr=b&sp=r&sig=lbVzruUuz0GntTPgL0cI4ti9XGc%2FHz4C%2FQrB63Tm3B8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:49.3082508Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:16 GMT + - Wed, 06 Nov 2024 10:12:49 GMT mise-correlation-id: - - 9646d922-2d6d-4c57-8fd9-849c5feac4e5 + - f5d83cd9-6ac0-4dcf-8ef5-38c346c8ad5c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054516Z-166cf497cd4z4rvk0cprvnxxh000000007x0000000009bnw + - 20241106T101249Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006brd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A21Z&sr=b&sp=r&sig=xzAyvQDTA76%2Fh1b0sqLMjRQAm3sH1g9zHpZzut%2Bh%2FGk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:21.3636889Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A54Z&sr=b&sp=r&sig=nXHGjhYMqEhhg6IIsd%2FwkpsRMEHXzMYuh4Yrjecwi%2F4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:54.7399124Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:21 GMT + - Wed, 06 Nov 2024 10:12:54 GMT mise-correlation-id: - - 7926b60e-1b88-4076-bccc-6c1df7cbcacb + - adc0c869-5265-40e6-9491-5b529f1c3fb2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054521Z-166cf497cd4xh8zq4d721105qg00000007y00000000030d7 + - 20241106T101254Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bsa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A26Z&sr=b&sp=r&sig=X6NimIMRDBc23NBfktHtv7RDCYo9Ijx5ldvRqZULra0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:26.6478678Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A00Z&sr=b&sp=r&sig=je2zZZzjfCsrn8Ok%2BgMtMcLAnyiFtuGb0u5aN7XHrCw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:00.1614713Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:26 GMT + - Wed, 06 Nov 2024 10:13:00 GMT mise-correlation-id: - - 8dcaeb90-2d67-40a8-b7e3-117314da3d5a + - 3081319a-3e7f-4789-920a-5682fdab0ebb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054526Z-166cf497cd4q86sbftw3zaubkw0000000830000000004ukq + - 20241106T101259Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bsz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A32Z&sr=b&sp=r&sig=UVc6zXovLzWHF2MIHGga7E1M9h%2FNUcLma7CFMTWo5ks%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:32.0221889Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A05Z&sr=b&sp=r&sig=HFITu3s%2BP4RUzkBFLVqNLsofNwlhz%2BDlFOSXWFHSIMA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:05.545014Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:32 GMT + - Wed, 06 Nov 2024 10:13:05 GMT mise-correlation-id: - - bebb5620-0092-443a-b3eb-e7e1018c926b + - b44c9075-d67c-460e-a024-74ef3109492d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054531Z-166cf497cd4r6hmp97992txd7w0000000800000000006tvx + - 20241106T101305Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bu2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A37Z&sr=b&sp=r&sig=74JZTJ6iUNqWDrsgzhayk1A3VS2rQCXqO09SMUHYrWM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:37.4118086Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A10Z&sr=b&sp=r&sig=eEjZY1tUO1eJIWo9K7YmT%2FFbMhLuQZRDqDkAyHmnWlU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:10.9455799Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1039,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:37 GMT + - Wed, 06 Nov 2024 10:13:11 GMT mise-correlation-id: - - 4bcca0e0-4de7-488f-bdfa-dba3f3e7c6c1 + - 0f6972f8-24c5-4161-8316-f6740a0f2366 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054537Z-166cf497cd4qwz4p7wbrzn166c00000002f0000000001apd + - 20241106T101310Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006buw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A42Z&sr=b&sp=r&sig=oUEz%2BaWp2vM%2BF9du56kgVKe1TloR8dFjS%2BtWXaCJ%2BpQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:42.8271708Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A16Z&sr=b&sp=r&sig=uWyLPuOAUeUPmKE1lmBF1h0%2FtEQXAr%2FV1AZbIUg4czc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:16.3416919Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1081,17 +998,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:42 GMT + - Wed, 06 Nov 2024 10:13:16 GMT mise-correlation-id: - - 89207bee-934f-47ab-a2c6-8cd80bd1b954 + - 5085e89c-d5bb-43f4-bf94-09bb7638c1ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054542Z-15484bdf45782nr6fa3f22900400000002d000000000gt4d + - 20241106T101316Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bw3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,12 +1026,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A55%3A48Z&sr=b&sp=r&sig=YgkRyljPbSielfG6PfjxxFbJoOmIxXUXde0o1Vtnbhg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:55:48.1488176Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A21Z&sr=b&sp=r&sig=3IEtQFE71qly0vlz8mrRhw%2FG%2ByGRgUQOeczBfKfpkvE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:21.7123525Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1123,17 +1040,17 @@ interactions: connection: - keep-alive content-length: - - '554' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:48 GMT + - Wed, 06 Nov 2024 10:13:21 GMT mise-correlation-id: - - 7e144eb5-eb8b-41b5-854b-b139ab33377a + - 69936b84-5db5-41b6-b4af-6c28d601f517 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054547Z-165bfd566cfwdnp4qpcafa3cc400000005dg00000000cd5w + - 20241106T101321Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bwq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1151,13 +1068,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A48Z&sr=b&sp=r&sig=Pxj%2B3oDObhf1dCENrLzfxqRHHHsvZvCPK3QX4JLi%2FGo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:48.4475479Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A48Z&sr=b&sp=r&sig=632VJXOOBkGceJ8Nz88QU1VB0X%2FzpJ2i9nsV3bkRwXs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:48.4478202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A48Z&sr=b&sp=r&sig=Xzv3w%2Bhr8vqFpu%2F0L5GDya3iplnvnkVYelq9MlFE4J0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:48.4479052Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:30.342Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.512Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A22Z&sr=b&sp=r&sig=IFJan65AEQB3ch%2Br2uiKiwBdSYf8tNj80Ilz%2B59PluI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:22.1525139Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A22Z&sr=b&sp=r&sig=tTfroZK5YB0vFZGdpTO6Fh%2Byj7xoIekK9fzkXVsPp8o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:22.1529002Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A22Z&sr=b&sp=r&sig=A4g%2BwQKo4QJo%2BfhqFeb%2FXARN7%2BKwhq5%2FXXkNLFlWV4k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:22.1530417Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:11.058Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:16.521Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1170,13 +1087,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:48 GMT + - Wed, 06 Nov 2024 10:13:22 GMT mise-correlation-id: - - 19db40a4-d880-4bfc-b5ae-45a92fd84909 + - f96d6eb2-39fa-4908-87ca-82806602d4db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054548Z-17f5d849667xc28w1ckc6mbf4w00000007d0000000004792 + - 20241106T101321Z-er1d798b584rhn7fhC1SINrc6w00000005m0000000006bwt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1194,23 +1111,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:56.6510549Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:56.6510549Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5eb7d474-e637-487c-b85c-0aad02e5e47b.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":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:52 GMT + - Wed, 06 Nov 2024 10:13:24 GMT etag: - - '"c5016a83-0000-0200-0000-670f52b20000"' + - '"fa00843c-0000-0200-0000-672b40e70000"' expires: - '-1' pragma: @@ -1226,7 +1143,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 642C4B0A839042ACA7DD41A40D9D9A7B Ref B: CO6AA3150218017 Ref C: 2024-10-16T05:45:48Z' + - 'Ref A: 7CC18C28AB1341C59F71ADA5E022EB3A Ref B: MAA201060513031 Ref C: 2024-11-06T10:13:24Z' status: code: 200 message: OK @@ -1240,13 +1157,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A52Z&sr=b&sp=r&sig=8aJbaLP29Wr7dQuiFndaawsg%2FNJS59yZ02fAIDwCdEY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:52.7182857Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A52Z&sr=b&sp=r&sig=nvunakghGIxAhveUjcksD6rLknLpMqSuexbR67yqqW0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:52.7188923Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A52Z&sr=b&sp=r&sig=7U07uzlURF43N%2FD8i6qQXpHrXL8I59WKotqTn1Gb67s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:52.7189962Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:44:30.342Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:44.512Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=evJDdkqxrepfyXlKgJaazCWG33XZ9X5bILpZYsG4Ud0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:30.0469726Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=1%2Fy812EozQPf9ce7H4v75uJ%2B2ksIUAw3vzsTDhHENq8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.0476887Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=t4eIlf8IVb1jNwtdYWEMSXvHolqt6Huk3w5IOY7pDXs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.0480605Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:11.058Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:16.521Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1255,17 +1172,17 @@ interactions: connection: - keep-alive content-length: - - '2780' + - '2774' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:52 GMT + - Wed, 06 Nov 2024 10:13:30 GMT mise-correlation-id: - - 78259665-bcb9-4653-847c-0a466fab879e + - 53f6fae8-e254-444b-9cdf-6d6ae156d2fe strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054552Z-18489d46dccp2df8e3m20gzz8w00000007u0000000009vxf + - 20241106T101328Z-er1d798b584jjq9jhC1SINbpms00000005q0000000001ywd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1283,23 +1200,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:56.6510549Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:56.6510549Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5eb7d474-e637-487c-b85c-0aad02e5e47b.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":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:52 GMT + - Wed, 06 Nov 2024 10:13:33 GMT etag: - - '"c5016a83-0000-0200-0000-670f52b20000"' + - '"fa00843c-0000-0200-0000-672b40e70000"' expires: - '-1' pragma: @@ -1315,7 +1232,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4C0AD9AFF9054F79858F596E68EA92D5 Ref B: CO6AA3150217039 Ref C: 2024-10-16T05:45:53Z' + - 'Ref A: 4803E934E84D439D908F70759C4F9F48 Ref B: MAA201060516039 Ref C: 2024-11-06T10:13:33Z' status: code: 200 message: OK @@ -1329,9 +1246,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1344,15 +1261,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:45:53 GMT + - Wed, 06 Nov 2024 10:13:37 GMT mise-correlation-id: - - 861b614f-44f7-4263-846c-b46d09a749dc + - b541b4e4-ffde-429b-aceb-2b7862d4b252 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054553Z-15484bdf457fxddfyvtw44f6s0000000033000000000c23d + - 20241106T101336Z-er1d798b584cft5mhC1SINz3u800000005g0000000004fzs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1376,31 +1293,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=I9XCYraWiAWNTTKXFEnnxEE6tO53ILris%2BMKpY5dWT0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4264203Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=ntNwXZU1Ugp43EFXc9UJHuT7M28oFXCvlRx4F9YDwTY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:55.4260467Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=9JcoOKZG09gm0ZmCbiHtfktbfBJbW2oh4ts%2BVJUERSg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4265124Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=XtPmpoLSOV2MjzJUX1qrKp8R%2BkJbJpSIlFotQIWKlNE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4266048Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A55Z&sr=b&sp=r&sig=rSwZEK%2FOlNor41NIAclSpyvRk6FNOlMD1jNZktoz040%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:55.4267074Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T21%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A55Z&se=2024-10-16T06%3A45%3A55Z&sr=c&sp=rl&sig=hzWz%2Fn2WYBt8ugsVDHV5XjEJ5aXGW7KRGbOiPPPJ%2FvM%3D","expireDateTime":"2024-10-16T06:45:55.4267993Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:55.185Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=qCWbpOg%2FvwLtJNoh6dTu3QZeJXDyqjQWccxloOQ6ea4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8854692Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=11QP6z9%2FeG6K6qvqOVoajIb3uM65g685W6uNpxg7rEc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:38.8851919Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=7zHud3JKnQERLCrQATohetXaUSMkbEoMVuGci8G853Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8855612Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=mSlIuWdJDVSii4x0XgmBNbYG40MfM9Pdl4PAWL0vdwo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8856521Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A38Z&sr=b&sp=r&sig=6GNj0N9iqBuLCGs%2B3M97qQwWKho5lbIdiQguVGIc7S4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:38.8857412Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A43Z&ske=2024-11-07T02%3A12%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A38Z&se=2024-11-06T11%3A13%3A38Z&sr=c&sp=rl&sig=0vYedH9O6w7qdFuH%2F%2FoUr4%2BsF7qmpGeyDdS7CpVv26M%3D","expireDateTime":"2024-11-06T11:13:38.8858278Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:38.642Z","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 connection: - keep-alive content-length: - - '4855' + - '4849' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:45:56 GMT + - Wed, 06 Nov 2024 10:13:39 GMT location: - - https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2022-11-01 + - https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 8e8362a3-623d-4f0e-8e05-5e16af9d3a7a + - f69cc1e9-43c8-4dd5-8acd-0557d112165f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054553Z-18489d46dccg5n69wa1d0046r400000007h0000000001g93 + - 20241106T101337Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g0c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A56Z&sr=b&sp=r&sig=InCy7CY6t5kiZouPz6VFtq3wq1KKMJCpiDctyGDXpYI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:56.5478096Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A56Z&sr=b&sp=r&sig=xRakqtyeZIn1oDI88dlf8RWEB7JDRQQfh1UHCNudczw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:45:56.5473908Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A56Z&sr=b&sp=r&sig=QLbL0y2kUrV%2Fdks7hGuTgiyNi3EJTHZGNsLq2I7Qijw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:56.5480091Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A56Z&sr=b&sp=r&sig=Pbu3iIKYC7IMgBvhfRONSIFiR6cZOwT6t%2BsgWacwE4g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:45:56.548202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A45%3A56Z&sr=b&sp=r&sig=pP5Omr3vrUuJfcDn6fqhjAUVUceFFKefhwN7zh1kc90%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:45:56.5483946Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A45%3A56Z&se=2024-10-16T06%3A45%3A56Z&sr=c&sp=rl&sig=tsHwf0x11rVGMgs7HnloFT6uRua5po0SheF6DRI53d8%3D","expireDateTime":"2024-10-16T06:45:56.5485738Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:55.185Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=6yo71iVJvcukb34vTVkWGbl1byHOBio6bGf%2BWa5PocY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.5456115Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=SsTL4p%2FEtCSgMPDPF%2Bjps2rciSSSHq6hMBALvmM%2FNfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:39.5453893Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=WcSMuQhqHxYpBFobGAih1%2BqMDYoYo3riJahrq%2BbDI3M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.5456882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=BOuQ4UAqldNXXkZDio4jwfITGnM47WVEzx%2FVq7ru%2FS0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.5457584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A39Z&sr=b&sp=r&sig=1VP6Iu5wK%2BaGqFZqonNkMb2YbhGfKyvV0TP90%2Ba%2BpLE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:39.545838Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A39Z&se=2024-11-06T11%3A13%3A39Z&sr=c&sp=rl&sig=S1Ki8bcG6YLnP0GstHFRdU5HOPHNxswHKWtxlp%2Bu%2FsQ%3D","expireDateTime":"2024-11-06T11:13:39.54592Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1432,59 +1349,17 @@ interactions: connection: - keep-alive content-length: - - '4846' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:45:56 GMT - mise-correlation-id: - - 30b880f9-ee8d-4802-a4f3-ab9f7db914ef - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054556Z-18489d46dccp2df8e3m20gzz8w00000007tg00000000dq3h - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=%2F1BAEegqvPW%2F%2BWf9aF8OVYH6cD5eSc5hLW7p%2FvCJ1wE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.9257546Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=vMTmZwqS80IKfh8gzO6oMi%2F11p9tvvejZclh88pOSVc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:01.9255036Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=iuUo%2FsTDUGMSB%2BBY6IEIuQyDzzpTQl4Lg9aN9DFOxvs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.9258533Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=Km5%2BQWzOyDiRXcKMjUYAXRhIM9lt2FxWbunysGoH5VU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.9259496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A01Z&sr=b&sp=r&sig=qatsYsOBsiz22OT7BnF7cOsZgYLuJcUSOtLLxtVupx4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:01.9260459Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A01Z&se=2024-10-16T06%3A46%3A01Z&sr=c&sp=rl&sig=DrMV7cXkhgjQvZ9EjD7G7serVupVbaQkVjteXmK2LCE%3D","expireDateTime":"2024-10-16T06:46:01.9261415Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4906' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:01 GMT + - Wed, 06 Nov 2024 10:13:39 GMT mise-correlation-id: - - 019f5ee7-bc82-4550-a484-697dab65a83f + - 362248ff-cfa5-4859-9630-bbc686969c0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054601Z-166cf497cd4q6m55tfpt35bu6000000007x0000000003utw + - 20241106T101339Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g1k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A07Z&sr=b&sp=r&sig=ne9JNux5w%2Bsoxv5I5C0RIMugvKdNFrpc3kbNzv2rcjs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:07.3196175Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A07Z&sr=b&sp=r&sig=h1C4ycr2mrVHZOjwHuWw%2FoRkyEwchKB7Mj1q%2FZ7qtu0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:07.3192042Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A07Z&sr=b&sp=r&sig=gIglDMSKrFrSIWqqvnu8xf6L85sovn8KMTRrEeEAb%2Bc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:07.319741Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A07Z&sr=b&sp=r&sig=oxwomB%2BhiQj9JX4EC2ydjiYKPya8qHRo3j4Lus88dDc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:07.3198742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A07Z&sr=b&sp=r&sig=Ry0%2BxI9YqvxyVwkjh4ie4mnatgzcRbl0mSWGJP3ry5c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:07.3200148Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A07Z&se=2024-10-16T06%3A46%3A07Z&sr=c&sp=rl&sig=WaxRsKscCDwC4MmfrDU9srIJIXUBfDxt2i%2FwcCYUhv8%3D","expireDateTime":"2024-10-16T06:46:07.3201463Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=xy%2FfXvIGgN%2FNYN5r1bxKRQc%2FEpItKHuXK37Sz2NeW6Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9705694Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=E3jt%2B9viPdVlKgDYVb5rEB7xMzmm6ycv9qPs8jJDt1s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:44.9701778Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=zH6vXeNvQ7HwFRVosEYr15TtWk7LlVvtd0UekMXWY5s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9709028Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=holCEcTLBmJPH4Ppysm4J3C2frVPiHML0vxvpXGbj2c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9710519Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A44Z&sr=b&sp=r&sig=Nb4qAHBSZVpDBNF2OjCHmwHYiwEIBXBhV6AmaPeFduI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:44.9711765Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A44Z&se=2024-11-06T11%3A13%3A44Z&sr=c&sp=rl&sig=%2BOBLskBuLcwB7y7M9Rsaq6MjoIwkX1kgvt2ZO1KVjAw%3D","expireDateTime":"2024-11-06T11:13:44.9713193Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4894' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:07 GMT + - Wed, 06 Nov 2024 10:13:45 GMT mise-correlation-id: - - 729129e8-0365-4be4-8b7f-c1fb3e3ea615 + - 4447a2b4-75a6-4959-9c40-889259d23adb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054607Z-18489d46dcc7qds9rw9wr310dc0000000670000000001c5r + - 20241106T101344Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g48 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A12Z&sr=b&sp=r&sig=mR71q7764IZphF2vMe74MFFwvj%2FmkV2jRhcBzUdEuZo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:12.7076942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A12Z&sr=b&sp=r&sig=aXoxiRdgKr2%2B01aJQju1qwIfFbRWEwe43pMTX4riyTk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:12.7069661Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A12Z&sr=b&sp=r&sig=CGUWecjqdyzfuZPq2WaVj46xZ43ympVHzWgOerQoxIw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:12.7079305Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A12Z&sr=b&sp=r&sig=O2e43hPiKKwMj2t9dly67SrscAdfQa2KZxs8FVUcU4Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:12.7081492Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A12Z&sr=b&sp=r&sig=o9DZNNkXcBLP0FcxkLaES0gdMVaY8A1Ccog%2FuWvZnWo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:12.7082982Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A12Z&se=2024-10-16T06%3A46%3A12Z&sr=c&sp=rl&sig=Sc6h6752rG8Dv3xHnbBnkZ2vtLetdI7c8MoWNCbnJ8I%3D","expireDateTime":"2024-10-16T06:46:12.7084271Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=mFgUgEtzNKrCnC1mQ0VeU7jU%2B8XIz2tMCvEYYQ5gJE0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.424581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=f4n2ufnJmqcJ3dAyQFoXydLnqEstYbFpSMakSXDxSkE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:50.4241587Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=TmdOvOUReXpo5lj6SF4D%2FCTp9BoPSOftKVEkWysEVl4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.424724Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=YR1vqzIpuIDDBo1XA70XqAEgMKKPsybWhAIZhPgSsh8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.4248727Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A50Z&sr=b&sp=r&sig=OEKMWTMRXSCigpNTI8v60KZN6hGuJwexgE4SpT8epM8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:50.4250184Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A50Z&se=2024-11-06T11%3A13%3A50Z&sr=c&sp=rl&sig=1uri7qnMCYmX9yaZ675XHbMMPiEui3CyGzbe82oWzs0%3D","expireDateTime":"2024-11-06T11:13:50.4251627Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1558,17 +1433,17 @@ interactions: connection: - keep-alive content-length: - - '4896' + - '4886' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:12 GMT + - Wed, 06 Nov 2024 10:13:50 GMT mise-correlation-id: - - 7081b13d-00ac-410e-83d4-2bf50f67a6e2 + - cb09693e-82db-4f29-b0ea-97e3b8afe2a5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054612Z-166cf497cd4q86sbftw3zaubkw00000007xg00000000kwhh + - 20241106T101350Z-er1d798b584cft5mhC1SINz3u800000005g0000000004g81 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1586,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A18Z&sr=b&sp=r&sig=S%2FHjwf03VSucIa3BoRRjFttf7MdV%2Bi6x4yC9rHw27wA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:18.0692907Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A18Z&sr=b&sp=r&sig=LUvh3aRV79K5Ytcg5G4SQvD%2F6hkWd%2Fhf4u3D9Zf6EDQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:18.0689903Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A18Z&sr=b&sp=r&sig=ZRUfhFBbCblU4YxV8z1DbKN85k8GB8qI%2FdEWAP%2B4JS8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:18.0693892Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A18Z&sr=b&sp=r&sig=v7oaPAWqV57PXnkEiWjtSjw%2BzWPfPtDa5n5fJbleZR8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:18.0694836Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A18Z&sr=b&sp=r&sig=v85%2BpuUKXmenQNaDobbo%2FUb9DmWwPWV%2B7Nq4ywYm%2B0Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:18.0695714Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A18Z&se=2024-10-16T06%3A46%3A18Z&sr=c&sp=rl&sig=xZ%2FI8v3rsX%2FnIaU8SMnGMC7JSIGzJMaW%2FhOqnWiSvNo%3D","expireDateTime":"2024-10-16T06:46:18.0696779Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=iM4zwgxi5TZYNmXjQjfDtVftvmD41DEcZP2v4GNcMrc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.5694416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=PH0k45873L1Bmb8YildLkp9ukKvyHsekY6Y9Sx2DZSg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:56.5691986Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=AnGmwK0W0TuZ23UbWOcRZ7ft21dvFQHqRD7rIBdAuMg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.5695327Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=BrAzqStTWmGWeWhCL0J8Cf8cQZCVcTRcqsie9JlQadU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.569623Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=l6j8YR7RWLbzEQRFomdYbbCcCgzfz7iWmZ7rCIEAU84%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.5697189Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A56Z&se=2024-11-06T11%3A13%3A56Z&sr=c&sp=rl&sig=LVLtiQq9JZPzcSk69RdI85ZwnFwXuL4u7BRibxDVntw%3D","expireDateTime":"2024-11-06T11:13:56.5699783Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1600,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4918' + - '4883' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:18 GMT + - Wed, 06 Nov 2024 10:13:56 GMT mise-correlation-id: - - a2387d57-1261-4c85-8a99-828c0774d63e + - 4de2a41e-f0f3-4901-b9f9-b9ef0d534eb0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054617Z-166cf497cd4txcnh6qkkc4ez8n00000007zg000000008ytv + - 20241106T101355Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gbf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A23Z&sr=b&sp=r&sig=SsVCSt%2FtTZB9Li65cdentx1uYajcBPCQ1qGyiWt0%2B2A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:23.4556748Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A23Z&sr=b&sp=r&sig=gZraEt3hntOQ0FFJC3VVu1NOPRitVr2xS18jByDfgPc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:23.455407Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A23Z&sr=b&sp=r&sig=QUU%2FN4bsjqEs77eFvxZ4B9A6S%2FKwZvm6mrYQ9EihZYw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:23.4557648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A23Z&sr=b&sp=r&sig=cLSE2lNulqAloXNKjk3uccpIYeHUEzLY0ENrdgQ7lR4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:23.4558504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A23Z&sr=b&sp=r&sig=kKf34eXTQAU45%2FyxOjYeWnzFDRysiTvPpPN4PuKog4c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:23.4559427Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A23Z&se=2024-10-16T06%3A46%3A23Z&sr=c&sp=rl&sig=nlv%2BDS7yh4%2BAoW8H9srUpvSpRO7VGhVxqrW0iOOxBdE%3D","expireDateTime":"2024-10-16T06:46:23.4560265Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=kpEPtN2zJ9GxugBjy4sd6fkHd9mYMwhURfMnuAx%2Fah0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3423502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=n3i919CuHGM%2FhHwnPDAgK%2FBMH59hT6ig529nYcGKWK4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:02.3416936Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=4OllHGzteBrUqAqjDW%2FFNuVPquBvZga8Ksv5ymI9KyA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3426749Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=SOrXbYMNwVTQ7R4OvudaZhETHGseQLICbqCoiga9g4w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3429833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A02Z&sr=b&sp=r&sig=lsjg5EF%2B0CMBAo9ao5nWwMglIdKQi15LetV77T2q6LU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:02.3431945Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A02Z&se=2024-11-06T11%3A14%3A02Z&sr=c&sp=rl&sig=X7GsGEaTuOOCuA3VI5xJRTGx1OERy0KpKIOZXCJRMNY%3D","expireDateTime":"2024-11-06T11:14:02.343423Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1517,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:23 GMT + - Wed, 06 Nov 2024 10:14:02 GMT mise-correlation-id: - - 4cfe1434-cbbe-47b9-a8f2-7b261bd4c11f + - 5f8fb276-866e-410a-a88e-3fb66546bfea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054623Z-166cf497cd45mnb2hc29k63vhc00000007qg00000000eerm + - 20241106T101401Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gf4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A28Z&sr=b&sp=r&sig=flfhL9Y%2BIzOaqAP8j%2B5arJ%2F9vsE0X07uP16XHqyYpzA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:28.7329658Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A28Z&sr=b&sp=r&sig=rXEHF%2F%2BikSNSgIPSc9aNxpY%2B1tObwHfX9f13jYUMlYQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:28.7326906Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A28Z&sr=b&sp=r&sig=TsmpzMZJbFPfZ8Aq0WB6F8qiqSnDYAijmPiVMdFz2n8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:28.7330666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A28Z&sr=b&sp=r&sig=0vln6exOMV6lxlGu2cqrEzY8Uw7Ysrc%2BwffgrotbuN4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:28.7331602Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A28Z&sr=b&sp=r&sig=iVPeEeYlMkOIVoLxTPwbX%2FWd%2FGv2FZGGbBc1kh6ud3Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:28.7332565Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A28Z&se=2024-10-16T06%3A46%3A28Z&sr=c&sp=rl&sig=Dqy4%2BB90lxLpgnw6kaaOrhyeO21FXmiNzQa4hICRdBM%3D","expireDateTime":"2024-10-16T06:46:28.7333537Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=H0RoY4WFBOEUXBrccRoZovtTErE7P0uJMYx7miaJTQE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7451618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=ahaYP71J4zYG3vs2pW3nd8PG9tlFqCW4Osogrm2m%2B54%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:07.7447573Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=ybNADtRfTg46P0H2QkgyLmVuW%2FBBtaeOJGWI%2F17imaw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7453337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=mp2SHSDEfPlt8mM799CK8%2B811L6JOQfCJ%2BiLoi%2BvOTA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7455051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A07Z&sr=b&sp=r&sig=u8K8dU3XNzICtGhYq56Y76ZWja5SFpNOLP%2FhXna4SAQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:07.7456742Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A07Z&se=2024-11-06T11%3A14%3A07Z&sr=c&sp=rl&sig=jzVMd2z8z%2Buxfv%2FOUExKYA73p0cfs96yUHs%2FOdwWui8%3D","expireDateTime":"2024-11-06T11:14:07.7458426Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4910' + - '4904' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:28 GMT + - Wed, 06 Nov 2024 10:14:07 GMT mise-correlation-id: - - abb7480e-2ed2-4fc8-8038-40d7da778137 + - 75fe5bae-a863-43a5-b222-1b6b2bb90267 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054628Z-18489d46dccvln7t51fh7vb5kw00000007xg00000000kfmg + - 20241106T101407Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gka x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A34Z&sr=b&sp=r&sig=4OM7pzqs%2Fb5cU6cIAwi8XYZslLneAM5sIGQddzYkvvM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:34.4014583Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A34Z&sr=b&sp=r&sig=XcKUDk4lW3WEKc8qXnmYPdBoDaYvXStaJfnvrY%2BSdSI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:34.4011885Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A34Z&sr=b&sp=r&sig=rs0ROah%2F1V7sLT7vtAVxCk1fYPvRm7FzRDJGVn4olMg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:34.4015566Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A34Z&sr=b&sp=r&sig=HkUMgw75Dr%2BRbDAssYBvgFRYWSvBpPWLe2rk6EYF4Fo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:34.4016485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A34Z&sr=b&sp=r&sig=h3LweN3Ck7rJMsX2I91dc8yKSghAQvqRO8suadWsMZg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:34.4017326Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A34Z&se=2024-10-16T06%3A46%3A34Z&sr=c&sp=rl&sig=jpIANvNeVpEsujScSCynuu0FaRUrijO3DomflUo3zww%3D","expireDateTime":"2024-10-16T06:46:34.4018238Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=sbHUD9rvLOtRuQHgeKqmejzZZrTSHMXJz9SXSmBacVk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2014361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=kxuBue3QPdWto7yo92nRRINCHgsXkF4Z1zSJ3gfj3Nc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:13.2007156Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=30DDte1UtSlfUqbgXB75zvDKHLjVZcdGZ970fbKUZRk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2017436Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=ueFjkL5wI6ML2o6%2Bi1rZPw5hOn%2BqXdr%2FscB84UQ2AgI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2020514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A13Z&sr=b&sp=r&sig=hJnk%2FVILnB%2BGKrDYjCYHEPvHFDGEOhbNcy8Aks3Mmqc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:13.2023408Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A13Z&se=2024-11-06T11%3A14%3A13Z&sr=c&sp=rl&sig=uzu1d2F7VzwqXf%2FABWYjLT9cSb1Ng26wAIFfYbUJpC4%3D","expireDateTime":"2024-11-06T11:14:13.2026314Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1601,17 @@ interactions: connection: - keep-alive content-length: - - '4898' + - '4896' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:34 GMT + - Wed, 06 Nov 2024 10:14:13 GMT mise-correlation-id: - - d6f009bc-9fdb-41fd-aebb-77765cc89cb3 + - 8352ba31-8dd1-44fa-b1f1-fbbe2feb7fcc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054633Z-166cf497cd4xh8zq4d721105qg00000007v000000000bx1x + - 20241106T101412Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gpg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A39Z&sr=b&sp=r&sig=N%2Bj%2B8MqqMQsiTZAh8BaNRnB3mLhzbjnHSho4le%2BdKwc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:39.8127206Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A39Z&sr=b&sp=r&sig=7fucty14qr3V8IstjCioNmek%2BILn6g9tuJNOIRlaGyE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:39.812301Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A39Z&sr=b&sp=r&sig=3jASexwcvdW5lb9pO2W7UOdy7LBshbp4jhbtkhacqoE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:39.8128161Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A39Z&sr=b&sp=r&sig=JfxfR29IoHTaVxaceMNhaoEPxApHoH5zMbae3Ziiib0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:39.8129074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A39Z&sr=b&sp=r&sig=VMVSwgX2OG45i95Boyzy2A7C9RvNMZvM0panl6M3xic%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:39.8129877Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A39Z&se=2024-10-16T06%3A46%3A39Z&sr=c&sp=rl&sig=7r63dfw1hvW1irRaF63Oh2C52t3VMZYOLKmk7oUHYkk%3D","expireDateTime":"2024-10-16T06:46:39.8130732Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:45:58.192Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=n6xqHUeS2xaemi2MUdzC2o89u7C8Xs%2F6o9LnNuWRNRw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6591386Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=rCpDyg8MO%2FEbee4y05PyX9bnCvTJ7R1SzkEGwN6qu%2Fg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:18.6588562Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=1v0XjU6%2B6bNxh3lJA0q18eP96aUI%2Bh3VIt46aBUZ%2Bd0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6592611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=pppQmDproZTydebYcNYCJiKQ%2Fej50d5Bs2OfBKtWOkM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6593807Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A18Z&sr=b&sp=r&sig=Z1Lwv9HTSoHR5g6zWa2sB4n1gxXl7fyCXb%2BE8kGVxfc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:18.6594954Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A18Z&se=2024-11-06T11%3A14%3A18Z&sr=c&sp=rl&sig=ot41AG0SNs9ZRMqMpz5sB8bhJPqlbKyw63v%2BLf7fJfQ%3D","expireDateTime":"2024-11-06T11:14:18.659609Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:39.429Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1643,17 @@ interactions: connection: - keep-alive content-length: - - '4897' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:39 GMT + - Wed, 06 Nov 2024 10:14:18 GMT mise-correlation-id: - - 10a1bd06-b0b6-4273-80ac-ebe875cf2d03 + - 5ec56301-0588-4a32-9e94-7da869362997 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054639Z-18489d46dcc5trkwxb4ya4w12000000007r000000000f9wp + - 20241106T101418Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gsm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A45Z&sr=b&sp=r&sig=TviBEWi1826Axz7LGzBJ9OxLby3CNKVVBfBkNXBDG%2BA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:45.1756552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A45Z&sr=b&sp=r&sig=qzziphzYKyecncY6hZeQ%2BH4hIIKnlLdlJNGXgBFSBC0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:45.1753467Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A45Z&sr=b&sp=r&sig=7bcvP9wAk8JE%2BpfVbWS2hSQBDUcNrS596YuVefVS53k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:45.1757465Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A45Z&sr=b&sp=r&sig=1u0JwCMeEVdLs09kTP3jpFdeOsJ068uS3flm0hSYI18%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:45.17584Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A45Z&sr=b&sp=r&sig=d1URPKaauDM5u2K1hOMX8vYco8K%2FIyLQLGRu3cVl4Qg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:45.1759294Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A45Z&se=2024-10-16T06%3A46%3A45Z&sr=c&sp=rl&sig=BNn2JRxpbeLh82wd%2FNb8rZJxG4OieprWxjSBst%2BFTyw%3D","expireDateTime":"2024-10-16T06:46:45.1760279Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:42.974Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=yLOa3l38lUi8ryZSYBWzLH1giU9a9g%2F9uAoMXRf26EE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1122086Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=S5RBaGba%2Bm1OP6r6PfP6mfurE3pTzU2moelDASPT%2FX8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:24.111985Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=NslEK5YIAOggufYgx78hcp4XFCGdU3DGbmtCkHYDK%2BQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1122664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=ravBDFAdrebkxzvhngE%2FOuEy%2BzRFSHT5trj2YpGZK7c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1123227Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A24Z&sr=b&sp=r&sig=MACwRI3kEBqSCTx1Kt1FPQ1rorWs31VilIX7dULZuVM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:24.1123781Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A24Z&se=2024-11-06T11%3A14%3A24Z&sr=c&sp=rl&sig=5MCKB71iMD7L1nmwrdnlPL7SD471QcmQ6JC63DsZMSs%3D","expireDateTime":"2024-11-06T11:14:24.1124335Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:23.498Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '4899' + - '4894' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:45 GMT + - Wed, 06 Nov 2024 10:14:24 GMT mise-correlation-id: - - 4cd745f8-fec3-4511-8432-d67a38fa8cac + - d7437d77-38cf-4c59-8c5f-4285ecb5acc1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054644Z-18489d46dcc7qds9rw9wr310dc000000064g000000007fqp + - 20241106T101423Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gv7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A50Z&sr=b&sp=r&sig=s08lezrUUevTQyVO42SyF0Kjgl8fJ6qSoRjEZlh2f5I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:50.5731316Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A50Z&sr=b&sp=r&sig=o3YYaXDJKnITh%2F%2FytyXdexet2XaTg%2Frzzp6R58H8jDQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:50.5726666Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A50Z&sr=b&sp=r&sig=UAdmDnzTBjt6INwGcJ43fg09y7LRonblSLiCp8jkxp8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:50.5732361Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A50Z&sr=b&sp=r&sig=4oKLFLfBoI8Zd0OwT40qsveZAl%2BfgwXm%2Brx7Uw1tcdU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:50.5733178Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A50Z&sr=b&sp=r&sig=H5QFkASquYs8J64LZD8Q64sb0Wj8baIGofV5vpo6%2F5k%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:50.5734099Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A50Z&se=2024-10-16T06%3A46%3A50Z&sr=c&sp=rl&sig=PSdoM%2FFbxJjCX6xPF5JZKQFQXN6QmT%2BX1WZMlMMhEkk%3D","expireDateTime":"2024-10-16T06:46:50.5735064Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=%2BtIApaUx2nzlXlcpn7v6xVXuAumAsqNPkQd0FFsNPpk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5146134Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=WwJopypMLUOBx%2BceMzpUVtWjSEYwWhGC2uoC08VwCmM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:29.5141759Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=alZORZiyvbWRcJTCo4Fdzo2f2SsgB1GEzgXGE53g6bI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5148042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=nwRAwi5XtwPwGbG%2FTVZ30VwXN1i%2FgXop%2FH2HM6ipBtg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5150522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A29Z&sr=b&sp=r&sig=gXCRyw%2BDaox%2Be%2F3L%2BEphogIClk%2B0Jdn4Jtt%2B7di%2Fl7U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:29.5152556Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A29Z&se=2024-11-06T11%3A14%3A29Z&sr=c&sp=rl&sig=RftGb9biTLYp1xdfw8awcoBo3DWFznHEtHfHUxhdqoU%3D","expireDateTime":"2024-11-06T11:14:29.5154519Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:23.498Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1852,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:50 GMT + - Wed, 06 Nov 2024 10:14:29 GMT mise-correlation-id: - - 322ccafa-adbc-4fc2-99b7-cdcaba227c5c + - e3f3d86b-ae17-47bb-8052-328109f858b7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054650Z-18489d46dccnnh2b19wcyx7sm000000007zg000000008w27 + - 20241106T101429Z-er1d798b584cft5mhC1SINz3u800000005g0000000004gxw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A55Z&sr=b&sp=r&sig=46R7ph48e6NOFbAbiq9EOQckmfg9tFnRM6t5l3G70I0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:55.9572782Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A55Z&sr=b&sp=r&sig=VY2IrionpaAgMfLI%2F3DQ7QnrzxLDvb3hgd2t%2BT%2FKrl0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:46:55.9569653Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A55Z&sr=b&sp=r&sig=BZo95Iuk223wVCkAd4HzPeJe1yKci4d%2F%2FJ6LOjYOFRQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:55.9573504Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A55Z&sr=b&sp=r&sig=yGU8hU0mYlr1LCM56KNWeOpn6LHmdPkLcJKzahvxMDE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:46:55.9574123Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A46%3A55Z&sr=b&sp=r&sig=jJKrYvHoh1eEqDPXloyRnOYYo7r3vpGaT%2FKU43umW5Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:46:55.9574725Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A46%3A55Z&se=2024-10-16T06%3A46%3A55Z&sr=c&sp=rl&sig=h1lGoLpBviUx3nlcdjDXWGpl7eWF93W1xGHgRF4b3C0%3D","expireDateTime":"2024-10-16T06:46:55.9575346Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=jypqdlvKGycbP6QP9QwXL1kvRjNE%2FCUFCxcuVpvgvSU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8961088Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=6VqWAZh6sJhNQxjECnZASjLtVXroOxPXJp1R%2FzSot3o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:34.8956432Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=ZdjdRbHr108gpk%2BQsUUrPXEtB3SWUuNEf8pTxC3lb4I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8962345Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=cHw5jVTeOsxpa1oCWxZSWXEPTJOUjtTkFRHkdDvF1BA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8963927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A34Z&sr=b&sp=r&sig=Yde4iqLB%2F0v%2BOlgyHLLAFFXG171hulmjn2C%2BpEViZpk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:34.8965733Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A34Z&se=2024-11-06T11%3A14%3A34Z&sr=c&sp=rl&sig=DVTi%2FbM1y%2BtDUUrGwcnkskkrikDFGcunD9OjOH%2B8xrE%3D","expireDateTime":"2024-11-06T11:14:34.8967374Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1898,13 +1773,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:46:55 GMT + - Wed, 06 Nov 2024 10:14:34 GMT mise-correlation-id: - - 80e9f902-04d3-4c0a-9ce1-4f4d45591ea6 + - 93302612-7e30-4761-b2ff-70869cbd57ec strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054655Z-18489d46dccfp7rz6a82yt7pbw00000007t000000000muhk + - 20241106T101434Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h0g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1922,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A01Z&sr=b&sp=r&sig=XGXiDQS%2BcnYPFiwOH5kjRe0QmciHIqBRPaY0eJLqEKI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:01.2953813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A01Z&sr=b&sp=r&sig=%2F2T7b9cC3XyYKLqZmu%2B2kFPVrEdZds%2BsErNmqONSbj0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:01.2951347Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A01Z&sr=b&sp=r&sig=0yCMTe875pPUGFSK2zJXrgBM9gaFHnb2DBvpStljaJw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:01.2954596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A01Z&sr=b&sp=r&sig=VroTrlGN4GykoOQpQ7N7DLiadL7lpBtk%2BStKabzX%2BUA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:01.2955399Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A01Z&sr=b&sp=r&sig=%2BsG3%2FdyN65l22iGhknL7YPBzqMY7WOrx8X3ORhPtRu4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:01.2956176Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A01Z&se=2024-10-16T06%3A47%3A01Z&sr=c&sp=rl&sig=S9utn828vpYsj1UksQWFhSw7KaPbW3jxPWubSQX7lTo%3D","expireDateTime":"2024-10-16T06:47:01.295691Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=KLsotJ8Bk%2BQXzFJa4DqYix%2BXbvD8cfCbFCGKsWReyjo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.3189832Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=AJIa0LF62b8xOIVU%2BB5zgmMLnRgRie%2Foxts9PQ%2BkpfU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:40.318733Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=%2BCAKyGt0jNtgV9T30z7ElSgk4h6i%2BVpGpB0OOnKOA6g%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.3190558Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=tybA8jjw0T2pNkwnyA3IhJIxfgrhTroBv%2FYuq8sxhp4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.3191374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A40Z&sr=b&sp=r&sig=rPsgFDKmm7uUNO6mGz0zW64tWjaTD3M1ycYRae5f8G0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:40.319207Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A40Z&se=2024-11-06T11%3A14%3A40Z&sr=c&sp=rl&sig=1hkzZcE%2FzhRKdp%2FFz1Rs6f0ii4Kpki6rJ831bUDpivE%3D","expireDateTime":"2024-11-06T11:14:40.3192765Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1936,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4902' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:01 GMT + - Wed, 06 Nov 2024 10:14:40 GMT mise-correlation-id: - - 2ad4748b-d354-434a-b1bd-8c9560e21124 + - 4d46a450-7300-408e-97cf-ed7d149874f4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054701Z-17f5d8496675cv7vvzee97tr8n00000009qg000000007put + - 20241106T101440Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h37 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A06Z&sr=b&sp=r&sig=Lvz1rCKCAyBnB0%2BCCBT8MNCpe5viLo6JjRhQ5nSzeqw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:06.6264522Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A06Z&sr=b&sp=r&sig=joRaA9Uwi5YowWq3mDGeO32j7yFHrjM4vavDIGdY1h4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:06.6262024Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A06Z&sr=b&sp=r&sig=1dp%2FvYAhpHa0eQ%2FdpaGnwGhKkGVMqThtqYBmbN6CuDY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:06.6265272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A06Z&sr=b&sp=r&sig=xiic%2Fns%2BsfUs0WRSGtmZNA1QlPKlxfqAY1Wrqpsjl0k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:06.6266111Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A06Z&sr=b&sp=r&sig=dPNH6k2T%2Bg2OD28Z9Gs1PzkGhmJ0iK6ONTApaQAeV5M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:06.626687Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A06Z&se=2024-10-16T06%3A47%3A06Z&sr=c&sp=rl&sig=tYAUbmqGVY4n2iqaqHJ3mlnOVk3Q5wBhKZB1srb6wb8%3D","expireDateTime":"2024-10-16T06:47:06.6267729Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=SLHbLHYBUiJVA97Xzw5vPMCJhXdfpV%2F4ME3tgNuqz9w%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6974747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=O%2FSVnSEQs16CTAp4l8uOyxHRea9xWPQi9HY1w8wVuI0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:45.6972537Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=frwR2PQreU%2FOgBWY8pw8Y5G3MDUoX5GPsN5hwCirjKs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6975684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=iz6qNwLisAS0%2FHMFjqYrMHDQstqejztRYK5kvKk%2Ffwc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6976664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A45Z&sr=b&sp=r&sig=PsvenNskVp6Z%2F2ae4UJAWsvoZKV9GGBAvQyPa0WNIcY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:45.6977679Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A45Z&se=2024-11-06T11%3A14%3A45Z&sr=c&sp=rl&sig=%2B4SlP5zYSZSig9UDyklTMzT3oKT%2BV4Pj4onhlHM1O8s%3D","expireDateTime":"2024-11-06T11:14:45.6978642Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4898' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:06 GMT + - Wed, 06 Nov 2024 10:14:45 GMT mise-correlation-id: - - 55af6e58-b122-4c6f-802a-e32c01624a2d + - dfc31635-85c3-4a61-b10e-7c23e6916af9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054706Z-165bfd566cf4c8jp0vyu991gv400000005v0000000000dvu + - 20241106T101445Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h5r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A11Z&sr=b&sp=r&sig=tcAXo%2Bg6aXe%2FBq19xUqkQMtcpLDUh3IFezNR8Rdb3pg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:11.9485401Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A11Z&sr=b&sp=r&sig=yWGPiZXjMuLDgqlrAEGmJU0At6mXN3eRkDx2oN3Vx5E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:11.9481016Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A11Z&sr=b&sp=r&sig=ZnTI5865XOUqyRfGoT8cvWt82Pp49wddJjU7Se8ApxE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:11.9487745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A11Z&sr=b&sp=r&sig=fY4wAjFinWlQyyPyz6UBWO4p%2BvSGWdSitTYgivV%2Ftp0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:11.9489128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A11Z&sr=b&sp=r&sig=4%2BiVH%2Bs%2FbD1atDuO1HDoWmLxqHtDr6xdiMEINz1yqnA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:11.9490534Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A11Z&se=2024-10-16T06%3A47%3A11Z&sr=c&sp=rl&sig=V5EofPla6pMgfJ5ovSGm0wW5HduS1t9Wn1Dsrn%2BqC%2FM%3D","expireDateTime":"2024-10-16T06:47:11.949185Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=yIWkD877sSdq2TSPkYkJ9t0E2vOKsykCNtBeD8zwsKs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2412859Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=nlMp2rcL8OdrOeYaXpCgNtfj1yT1T43uJWMJBsftaFQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:51.2409653Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=xlBRwzb%2FtXAK7g7N9Hc1YMkt71e%2BFtYxQyjyG5h5RAo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2413905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=eC00AzUvFJPaNambVStNFReovKMbR7xBJ%2BUzoS6eD%2B4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2415032Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A51Z&sr=b&sp=r&sig=MWm%2BEuoh%2FWOrzzsACxyNvX3XXc9LU93aIJ%2BNzhevfNk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:51.2416076Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A51Z&se=2024-11-06T11%3A14%3A51Z&sr=c&sp=rl&sig=%2FhP5C4o8VLOTTg1y4GrmCq18Vd6yaciusvteBLGEX4Q%3D","expireDateTime":"2024-11-06T11:14:51.2417095Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:11 GMT + - Wed, 06 Nov 2024 10:14:51 GMT mise-correlation-id: - - 711c8b58-a126-408a-b5f7-5586d6be015d + - f4363172-9772-4e69-bd36-f22b27c26957 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054711Z-165bfd566cf75gpsgsd9yyp22000000006k0000000001hdc + - 20241106T101451Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h7v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A17Z&sr=b&sp=r&sig=2bD7ei%2F%2FNhpfQrOgzHdcW9fcP7CZMUlMJwM0Ife%2ByPA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:17.3064857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A17Z&sr=b&sp=r&sig=1Fd%2BhYcsrweSmhT%2BFUfGj09CQHJnFieLlM5PPWPqh1Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:17.3062208Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A17Z&sr=b&sp=r&sig=2rdMgug9%2F21wf29jBBP1ZMA%2B5dNZtgC%2Ff2xAcFbqiRs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:17.3065713Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A17Z&sr=b&sp=r&sig=YKczEmLn0VsPimUIzaYI14E4b90pU9TIWifgZlNaz4c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:17.3066556Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A17Z&sr=b&sp=r&sig=z%2BP%2B%2Bf6r53fEL4xWefVEAApVr0dm9UBy8NfYzp4CfV4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:17.3067372Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A17Z&se=2024-10-16T06%3A47%3A17Z&sr=c&sp=rl&sig=%2Bxz%2FHdXB4QG0MSjWMmwEgU7ZBXTYAMFp81pLNYh%2F5Sg%3D","expireDateTime":"2024-10-16T06:47:17.3068171Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=t%2FlaQ7nwVfCht0NwsRZtl4lVqDLPcUN7zWRZMMNPbgc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6508527Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=S7R7wVOjVC6el4NVXMiYJ0Ztr72cTEwy0LzvAFjcZaI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:56.6505705Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=78lodlXrt2wXrw2wtcHqiKapCNm%2BXg09ouepU64a0Ck%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6509446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=QAvdYIiJ9J7KoVks%2F1LA1TirhJPlOLRKMztzr%2BgLz5U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6510444Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A56Z&sr=b&sp=r&sig=%2FWjeglVxaap2Hm17D4PeJ5FK0nsEGHXe0oKoEcykMd0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:56.6511367Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-07T02%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A56Z&se=2024-11-06T11%3A14%3A56Z&sr=c&sp=rl&sig=IU0Fjl3c8QpYoyc1L1BSjn1KKIdbbUdtCQNxiEx9SfA%3D","expireDateTime":"2024-11-06T11:14:56.6512304Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4915' + - '4891' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:17 GMT + - Wed, 06 Nov 2024 10:14:56 GMT mise-correlation-id: - - ab88b1b9-756d-42aa-90d1-77c06bf8b5cf + - 032faa34-b672-413f-a95d-aadf1b07d91b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054717Z-17f5d849667xvkmtuucmr70ff400000006d000000000csqh + - 20241106T101456Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h8h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A22Z&sr=b&sp=r&sig=PpPr%2B2k3NaPoeHwC6goX39INEgyUGZMf5Hbi8%2BML%2FEM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:22.5406467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A22Z&sr=b&sp=r&sig=ge0fJepM3fZ9ypsj1ivImopWjz1RPQxWw1xNxIkt0s4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:22.5404053Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A22Z&sr=b&sp=r&sig=0TGh2TV44BE6Z4Z6KfC6nSklLm%2BzfpqRmspOEFohMDU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:22.5407149Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A22Z&sr=b&sp=r&sig=sCZ%2BLgocerJqz1jXS4zdlUnSR3ZeXB8eFeb%2F3pqxTYY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:22.5407813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A22Z&sr=b&sp=r&sig=n0Atcnseu0%2FGfoSwfpR2WNbT%2B0YdX%2BCHPjJwxEJFL0c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:22.5408472Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A22Z&se=2024-10-16T06%3A47%3A22Z&sr=c&sp=rl&sig=jrHiVqcmgnHhIzLDqxzmKuqYihRuw%2B6YWozEH3dCxJk%3D","expireDateTime":"2024-10-16T06:47:22.5409347Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=wRCorwi4rski2vQACZ5bcqCScSmA60c47mgDk9be%2F1M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0344618Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=8Hb2ODBfPGmhJuN06MgwmzCPayKfAVzIFHGbbGBeEvo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:02.0342059Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=x8qpxI255bCa%2Bas%2Fe3zsbHsL3e5x2pAnnK7ew6a%2FqWk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0345501Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=tY1zflKNFbvY4zXa3kB5lh%2ByXF%2BNZmPBjOsHeQ5EvSM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0346942Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A02Z&sr=b&sp=r&sig=Zqv5hsYX9szQnqYhubj1D4W6lFAvOFtvMxdvCRuPxMM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:02.0347825Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A02Z&se=2024-11-06T11%3A15%3A02Z&sr=c&sp=rl&sig=D3dlYTjJT1bh6bh0%2F3YQ3EyIC7y8TCPBdXN0oW%2BrweM%3D","expireDateTime":"2024-11-06T11:15:02.0348603Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +1979,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:22 GMT + - Wed, 06 Nov 2024 10:15:02 GMT mise-correlation-id: - - ea0e96bb-c8b1-4b3d-bff0-8eb2381947c0 + - 61c7c68e-9a13-49cb-94f6-77da4534ea81 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054722Z-166cf497cd4ljj2qr0tamq52u000000007sg00000000exa5 + - 20241106T101501Z-er1d798b584cft5mhC1SINz3u800000005g0000000004h9k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A28Z&sr=b&sp=r&sig=eOoooi4Hpiisfi2VrfFsmrIhOqRJsyk%2BJVpaZj4650M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:28.0151096Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A28Z&sr=b&sp=r&sig=aVYhj4CErRcYHgSg3hZbstLAAwWLTxR9jtNdDUWBFy8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:28.0147334Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A28Z&sr=b&sp=r&sig=g0H27Zb46gkNR69OdU1369zI68v6UOsImNMug0xOsxc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:28.0152429Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A28Z&sr=b&sp=r&sig=HQr9CjR3tkoA0Z2HnVzBVxzO%2B7Rsn6YYPame6Ti0nCA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:28.0153422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A28Z&sr=b&sp=r&sig=gu6PRmfTcSzYyNxaji1dGKsDzXhO%2BU4GN7bzSES%2F0Wk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:28.0154346Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A28Z&se=2024-10-16T06%3A47%3A28Z&sr=c&sp=rl&sig=Y5AHbofWJdR43YfGzKK1XMSu7MTSu3eW7fjQGu2b%2BHE%3D","expireDateTime":"2024-10-16T06:47:28.0155295Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=1NGxYO8uEMmVX1ktk9RV6YEtmEys3pfmB0045StFOgg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.399152Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=HmBpwdjhKdjcrnnmXjaOffQkA8rH0226sRt3zTl9YaE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:07.3987675Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=1Hp5YrkZpJWqdTxgzqy2xj40fx%2F1MOUWA2VJ0sBTBto%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.3992737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=xqDcniBeOISzmxpffZCWYqpskv2BbjSvCKqGlPI0J4w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.3995032Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A07Z&sr=b&sp=r&sig=yelbIHRnAJcAFes7WK4JQfGiNq88QRrlhyX9XWSwiFM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:07.3996251Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A07Z&se=2024-11-06T11%3A15%3A07Z&sr=c&sp=rl&sig=xYDY8aaFsTODfbwzCWuuAOb0SgVfuVWyGxtQ9ouLva8%3D","expireDateTime":"2024-11-06T11:15:07.399773Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2146,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4897' + - '4881' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:27 GMT + - Wed, 06 Nov 2024 10:15:07 GMT mise-correlation-id: - - 9bd4aa20-ad6c-479b-9c14-60cf6fa080fc + - 3d3187d9-c913-4ed2-941a-029d65ef0340 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054727Z-18489d46dcc7qds9rw9wr310dc000000062g00000000f7qx + - 20241106T101507Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hb0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A33Z&sr=b&sp=r&sig=YgfN%2BalxbDw%2FSek0E14RTEmTy3Ch%2FM0JqT2Tnlv3txw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:33.3805856Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A33Z&sr=b&sp=r&sig=gO49cFzREvLcyykE2VCBm79uSA8VasLUrD6rEBpOvBs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:33.3802965Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A33Z&sr=b&sp=r&sig=5dheGi9awtIfSobKCA8nyKCPebjxGyOY%2FwzcwdUj54E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:33.3806865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A33Z&sr=b&sp=r&sig=BcXPIWMkBWZWn%2BGeKUf7OnXbL93zHlONYRXcvOlQke8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:33.3807885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A33Z&sr=b&sp=r&sig=%2FwO%2F9PpSzDEJ%2BMRXmMtoCQquCIQp9fPH%2BJvi2MMIyp4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:33.3808771Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A33Z&se=2024-10-16T06%3A47%3A33Z&sr=c&sp=rl&sig=4c%2FAfB15UXwc7X90QD9kH%2BVUMZMxp0xpA1MrTf3fUBM%3D","expireDateTime":"2024-10-16T06:47:33.3809687Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=%2FqIZonn4vMs4ORkABBCBz3tiv3XhbUAm27ALd%2BuhV8U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.7886228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=3KIHWKjfTqZHPnCR7G5oq0cnmkMIq0gmGMmUyFpFyqw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:12.788124Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=pPlpooiWhENGAMgeYMQmi4IgWMk%2FTTlc0WPyaXH42do%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.788865Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=cBh7wtSNVLgKkYL9qo2lpHbGmdZepTXKX0CI5HdRImc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.7890492Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=259sOkQ1r2sZ2UfZOEMMqLS1ctSmCPq71ZSRyPw9c%2Fk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.7892382Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A12Z&se=2024-11-06T11%3A15%3A12Z&sr=c&sp=rl&sig=AtQCk5q0TjsOO%2FUcKI970WUsxz%2BouXOTBDKyYcnydcM%3D","expireDateTime":"2024-11-06T11:15:12.789452Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4890' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:33 GMT + - Wed, 06 Nov 2024 10:15:12 GMT mise-correlation-id: - - 7416a091-1156-4bea-a8d5-ace16654d911 + - 02fedc76-4967-459f-a91b-dc5a0e64404b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054733Z-18489d46dccggs4rh24eyxmvec00000007t000000000esh3 + - 20241106T101512Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hcu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A38Z&sr=b&sp=r&sig=n%2FcMTkOj56eNSpxSru1EiUSygimCsGwaIIWcEk0Kp9M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:38.6843735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A38Z&sr=b&sp=r&sig=f28w3g0%2BhTHor2LlksSXoJ%2FYKJCQcbbIllYVzzOk9yo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:38.6839166Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A38Z&sr=b&sp=r&sig=NzIoggoWrEQ6o1YPj08CRKRZwYaTupiwfe9X2JrHwmE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:38.684598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A38Z&sr=b&sp=r&sig=luHnjgJFgfTpUiLSkvxHVtxbs2yoIGtm5oXvZ05A3kc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:38.6847929Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A38Z&sr=b&sp=r&sig=7v4YnlMx9sOMJ6PiGhVYFPoVo0dthR37uIalEd%2BI6%2FY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:38.6849876Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A38Z&se=2024-10-16T06%3A47%3A38Z&sr=c&sp=rl&sig=czdM0CPX6CCjL%2B%2F2AZOjFNlSnWC0cUXk%2B2suKnktk2A%3D","expireDateTime":"2024-10-16T06:47:38.685179Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=XluoPqTf1XtmekyDtXu8TvOw7UOlN1Yp8Ct6uM7nCTk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1867653Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=MoOGkMoDvGrH%2F5M4%2FEcSQpmcrz1X8kEM27jfAvSLH%2Bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:18.1863126Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=MdUXSkMH5hvUUwpNre9myQjFdWN1ZcGzjjBXJijrLBo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1870596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=ZS99e1gOCJBLmag%2FVFHkYHPK7M%2FifCPmrOaZX3%2Fpt6k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1872634Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A18Z&sr=b&sp=r&sig=vKrN6jmkoGoYXVTdls9246MU8%2BeM24LXRKG9PWcXZnY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:18.1874686Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A18Z&se=2024-11-06T11%3A15%3A18Z&sr=c&sp=rl&sig=NVZvpcvjVqVR6xB3QuV1pa2%2F4yvM41p%2Fe4HYkhByE%2FE%3D","expireDateTime":"2024-11-06T11:15:18.1876653Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2234,13 +2109,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:38 GMT + - Wed, 06 Nov 2024 10:15:18 GMT mise-correlation-id: - - 296cda52-c2cb-427e-8b75-151bd1314790 + - e1417e5b-6739-4417-b97f-8372cd05d57e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054738Z-165bfd566cfvnfldckvfavskxn00000007a000000000e7vb + - 20241106T101517Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hep x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A44Z&sr=b&sp=r&sig=kHqvebKZF1t2PZQ7MoBGdL3Gm1enRQmU0YuaDjX%2BgWg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:44.0346804Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A44Z&sr=b&sp=r&sig=%2FUPH8OFioTwymNF%2BuPFkKbtCCJ40zX6pjfsI%2BqxIwtU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:44.034432Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A44Z&sr=b&sp=r&sig=dK4v2SodkZ5JVYntJscl7I71e%2FNsQooh7f3B6zLPpmQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:44.034756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A44Z&sr=b&sp=r&sig=LPPOGtMJDtLDeDCwe7do8kRXW%2B1diWa5EG1aUumkdqg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:44.0348219Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A44Z&sr=b&sp=r&sig=ZyYjQUcuQfpyhe0RoH%2BVy6TQNaZSaQBlJ4db5U%2BvDB4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:44.0348863Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A44Z&se=2024-10-16T06%3A47%3A44Z&sr=c&sp=rl&sig=SAwdW16coZfSgj5JVubui2eDtlU4DN9xKl8iCJi%2FuXw%3D","expireDateTime":"2024-10-16T06:47:44.0349639Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=vo0qru8QCAuUr%2F%2FzeN3M1zI9hceAsfwCHvVkRbsV234%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5824199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=9E7TlF7380vCLiChtEn0rw20svUotI1zd8urqGoAqe8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:23.5820677Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=IycBtEejAksLOgzwAL5%2BEb9MnqeGsk2rWkvI8SwFzV0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5826159Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=OfHfNIAzYQiqZo1lFuiedJPiahwyze6aWaqBQtGl%2BNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5828204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A23Z&sr=b&sp=r&sig=VPAz8vPQrf5uw%2Fb4TjRKtT4oXx%2FWSq2al%2FLaRYEAIHk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:23.5830175Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A23Z&se=2024-11-06T11%3A15%3A23Z&sr=c&sp=rl&sig=5l4PqabXTL4pHHAUXyJ4Y24bygwQEKt9hYpisSI0AP0%3D","expireDateTime":"2024-11-06T11:15:23.5831581Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2272,17 +2147,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4895' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:44 GMT + - Wed, 06 Nov 2024 10:15:23 GMT mise-correlation-id: - - 555f267e-6483-43ce-ac5c-2343164538da + - f17d8406-0785-4c44-92db-dd2d8a9c648b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054743Z-17f5d849667wqxpvdmyq50u9dc00000006x000000000hevx + - 20241106T101523Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hgn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=jIQaRAHvDO7r2Y150e6CWgQWR4RH6bb4X%2FXuCNERBx8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.3624469Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=Fof2y%2BNDh83wjlnx4iwov7Stcz9pH%2FczKEbVaQ%2B%2FqAI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:49.3621879Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=5XQZLJ14O2MkAgO668JGTTfsjz4wkqNerP2hluIVoSg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.3626118Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=eb1IuMFCTQSg3ps5yG0aV3tgZYmEATrKIT0XPBG%2FvLw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.3627512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A49Z&sr=b&sp=r&sig=JaklQzpeR4ve611RZbnYfjiSHYBGFJOdGxmO7QKSMck%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:49.3628359Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A49Z&se=2024-10-16T06%3A47%3A49Z&sr=c&sp=rl&sig=6PH0Ne5YeKdaVPlL1a%2FQIGwZPgtXFF4UTMV2KT3UpHM%3D","expireDateTime":"2024-10-16T06:47:49.3629134Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=4sHZFoMfReSMW4%2BzLHvC33yaEAkf%2BjS8rkHg83KLSCI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0203629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=qs8E5usikjgSCAfJmZj%2F2vaXV1h2zYBdJN7zsLf6vuk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:29.0198962Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=DtF9IgQWxjFjBlcdFuv4tFDowhxlf31spFN2cOsQI7I%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0204734Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=fU%2BzY96Jqo4RhIuFQkxQgOM%2FnM7T3pcyxKTHhH0d50o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0205739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A29Z&sr=b&sp=r&sig=%2BzTbDNJOcXSzVRrlI4%2FPaUSGYpgiKUFtt2OGtYpJX6w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:29.0206637Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A29Z&se=2024-11-06T11%3A15%3A29Z&sr=c&sp=rl&sig=L7u4R7DHQnifuhgnpcvIbccuM3%2F0dT8Qoit8pQPzm8g%3D","expireDateTime":"2024-11-06T11:15:29.0207518Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2314,17 +2189,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:49 GMT + - Wed, 06 Nov 2024 10:15:29 GMT mise-correlation-id: - - 6973d3da-17e8-47c0-a582-7031e04713d2 + - 62ac0296-33c3-40ed-8d26-88423ec5f3b2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054749Z-165bfd566cf8d7vsev8ncb640000000005w000000000dffv + - 20241106T101528Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hka x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2342,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=3kf6zglfiILXIUfltjotPxHWy2ojXQjkhbfAHl7Jl4Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.7042377Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=pE337gdP62U1jK0D1z3cIXnDY93ZFanABeA9zct%2B170%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:47:54.703965Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=kOSc9Gf4FM3PBEe56wzrOsMiywDyfdMRc09vY95wt7U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.7043206Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=qfqezw6JsTxCXzQVm%2FbOM523Q%2Bvzv%2F6KWNvpuK1jbMo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.7044101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A47%3A54Z&sr=b&sp=r&sig=mluQGWkJcbDaUAWZupDBMuDPF2pTshN0zKELaMxfeEY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:47:54.7044977Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A47%3A54Z&se=2024-10-16T06%3A47%3A54Z&sr=c&sp=rl&sig=Vzon62F6aDLe%2FBTwuRR6qMndr6YXcRMBN4oLiewikTg%3D","expireDateTime":"2024-10-16T06:47:54.7045798Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=a66HDAdDc3gC5BU7wfeF3X%2BsEAq5%2B4snj6uInK75Thk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4291037Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=g4Oq4y3axikk3mN2a7kcs%2BRrOqIePHDBSNeeydRw788%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:34.4287708Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=%2BKIpOHigbX9e873VYxkZUlCvG3jH7woqBylIZ8iezN8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4292333Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=d6PAwUY3oeMYh%2B7LQ1%2FiejZ61YfbjVqhDo0Onu6%2Bslg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4293423Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A34Z&sr=b&sp=r&sig=G0egYtMaAY6UV55YmZ%2BZ8D1KW8pyx3I4bd8hFAOSVIk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:34.4294488Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A34Z&se=2024-11-06T11%3A15%3A34Z&sr=c&sp=rl&sig=rQG%2FazURUm1qy%2FPHHFDBvYZurbi%2Fodz9L3uY7ouvblA%3D","expireDateTime":"2024-11-06T11:15:34.4295549Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2356,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4896' + - '4903' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:47:54 GMT + - Wed, 06 Nov 2024 10:15:34 GMT mise-correlation-id: - - 6a42e16d-1d39-448b-93b0-e933311deb87 + - a2226756-1439-4f19-840f-2c74214bebd0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054754Z-165bfd566cftg6wfx5frzdn92400000008f000000000d62q + - 20241106T101534Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hn8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A00Z&sr=b&sp=r&sig=PD4RLp%2FlG6VWO3HtaT%2FKG495efCCnykqFshfE8VJXtU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:00.0463186Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A00Z&sr=b&sp=r&sig=Jz5wDRDVTDmp3ZXDbTe1jiZb%2B7Y85nL%2FeESLsCiXK%2Bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:00.0460503Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A00Z&sr=b&sp=r&sig=4drtfwnU8ME2cZpwvSlc3voTfPPZiEOVnAJkpVoyeqE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:00.046402Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A00Z&sr=b&sp=r&sig=0P0SOKXD%2FbnhYxq7lkEECRjX%2FV4S%2BFXEOZ9LGuYjhvI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:00.0464943Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A00Z&sr=b&sp=r&sig=Q7LGeJs5xXPS%2BVNijs88MaL0yxY0vrtdZYIEY9JUyWI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:00.0465806Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A10Z&ske=2024-10-16T21%3A45%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A00Z&se=2024-10-16T06%3A48%3A00Z&sr=c&sp=rl&sig=p%2BJauCMRlubIrtqroEGuuC5XkFul9UwzxndvYWva4As%3D","expireDateTime":"2024-10-16T06:48:00.0466613Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=wftGzPfis3xzbYgeXc17ru5EfM32AUn8FFxQsscyh7U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8079236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=4TNGIeWZawgrn8l3OcKZNi6VpPWS6nvrg2OCWnVh72A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:39.8076493Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=TrBk9INmkAR0o8wQlcSgyT7j1Gzssvj%2B7myPWcY9HaM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8080085Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=pdV3e1DRuhhBeW%2BfF7zjW6zKNM7GX3ndq5LJCMiWyqY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8080939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=2%2FFpW%2Bl9BDwCGOO5LyhhbENWDZKGCQMgxvxitq5FF8M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.8081819Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A39Z&se=2024-11-06T11%3A15%3A39Z&sr=c&sp=rl&sig=EuKcEqtghyzge6TRLJXEoN1%2Fxf4PwfBrjFJ3ic3PltA%3D","expireDateTime":"2024-11-06T11:15:39.8082687Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2398,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4906' + - '4891' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:00 GMT + - Wed, 06 Nov 2024 10:15:39 GMT mise-correlation-id: - - b11e11b2-dc82-4c4d-9860-02d62817abd4 + - 9c5a7052-02e1-4010-acea-f19b13f24e6e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054759Z-165bfd566cf626cbrvmzsprhfs0000000710000000006r8r + - 20241106T101539Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hq2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=KADQ7OLl4qgTAcQi93ZwgJRqHco26gNFsfMSa9TiYkc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.3825339Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=jTu1SWYa3qYlMAi4ctm6jiyLS0D0g7lavm7%2Bu1lrZ%2Bs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:05.3823227Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=xmrRKde1LHtmBokCU9bmwWKXiiRtX4csNYWeNnRnHk8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.3826331Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=YDu1cMv09sDOqfYdlIORGN7uF3baMv%2Bu1EgSKbvFc2g%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.3827161Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A05Z&sr=b&sp=r&sig=ONhAsJ85tIwVj%2FqPFSf4cBUzDxsKSNtn6A5APmeSaic%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:05.382802Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A05Z&se=2024-10-16T06%3A48%3A05Z&sr=c&sp=rl&sig=NV%2FdVQnD%2B1WAfYOXUla7aiysXHZjwOMwy6L3aQw5am8%3D","expireDateTime":"2024-10-16T06:48:05.3829133Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=l7svlDKRKJ92VX2NVO05zCRYS3dYdrEmkUBaiVHYIok%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.171985Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=EvSNZeHFY9tadKgRt0CM3V12K9p0kNV5qOmVks%2FedbA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:45.1717577Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=ecdD%2BObcg7P3RTxveVgekK50uPtLScbauSeQlb4am78%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.1720495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=N4bIAj9Lzd0Tpqsc55MbWMWz2E6FAZ2n9qPlIVu6JZ0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.1721128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A45Z&sr=b&sp=r&sig=cVDqaCbwI1P4%2BCHhpLG9DmMxOkYzXlABEORBNc6MbFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:45.1721754Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A26Z&ske=2024-11-06T17%3A12%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A45Z&se=2024-11-06T11%3A15%3A45Z&sr=c&sp=rl&sig=fhpRizltpcGfuDJuaLyDo9c0PFKOcY45nUV%2FQs9wzu8%3D","expireDateTime":"2024-11-06T11:15:45.1722361Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4898' + - '4888' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:05 GMT + - Wed, 06 Nov 2024 10:15:45 GMT mise-correlation-id: - - 782f9345-3bfc-4831-9502-b7b9acee96c5 + - aeafd168-da9a-4354-997a-1eae6b068c46 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054805Z-166cf497cd4qwz4p7wbrzn166c00000002dg0000000052xb + - 20241106T101544Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hs3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=we6QhjzDTBD%2BS0iEsADuZbBN346XLSQS%2Fkz%2FbWtFI0Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.7465462Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=XHhMpu3LUNZQTTbuJOxuWXSvlP6HMbk8Xh9Qnrs1vM8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:10.7461433Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=%2FiInsZNoOqUlmy1YBEApqcmLg8Gt1jA3YaJNGg5cCEM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.7466813Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=whNcpDJ3IiiT2HcPA8aQQriNgikvAhZlRZ4t9UVaPBQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.7468253Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A10Z&sr=b&sp=r&sig=rYderf987SYDxWmiu1bTrjCb%2FTUD5GsAp3JYige6cZc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:10.7469664Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A10Z&se=2024-10-16T06%3A48%3A10Z&sr=c&sp=rl&sig=%2BhJGekkpXx6g1ot7OFRQqyyuXtH2dealWJN5%2F3zxt7E%3D","expireDateTime":"2024-10-16T06:48:10.7471079Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=f%2BEiMg2KQK4R88CXEF9ulcqmyBn15CSUCL6RySOuOBk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.561945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=DdafK%2BIKxhG%2F%2FoRd7q4iVhOblDQ4jnY46Cn%2FPNNeu88%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:50.5616602Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=v%2FIgLcKTfV4ahrDAlksQYi7FP1EP3NCE15wUatLOKIg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.5620412Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=pTqDmcwa4fzIZv9GH%2BndfjfddJhXBfQroE4D%2F8K5zk4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.5621371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A50Z&sr=b&sp=r&sig=AOeeI6uXjwFBLf4tlpV1bxJWvoMb6AdLrGMTkRT3CUI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:50.562233Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A50Z&se=2024-11-06T11%3A15%3A50Z&sr=c&sp=rl&sig=nrCwfJWyCDbsTHDOEt3wNFT4IQwohS8uG5E7t%2B2TEmQ%3D","expireDateTime":"2024-11-06T11:15:50.5623244Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:10 GMT + - Wed, 06 Nov 2024 10:15:50 GMT mise-correlation-id: - - 77ec7b43-b982-4d76-a8ad-b304732105fb + - 60eec4a7-5f8f-4bb8-b65c-c3ee740c1153 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054810Z-18489d46dcck852hghpv4950b00000000800000000001met + - 20241106T101550Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hu2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A16Z&sr=b&sp=r&sig=MlX8PBvt4cH53YmWhaipB3bS6DRPgVNVuqM%2FsfxYdXg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:16.0703879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A16Z&sr=b&sp=r&sig=fYTZ7dAKjxxSL1hnDF7ngXiEuiMdXPmpY49amZSQB9o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:16.0700968Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A16Z&sr=b&sp=r&sig=K0JXXDt2kdtuy%2F36rJ%2FUte3bEMjng3EGxsXS8%2F1v0eY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:16.0704881Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A16Z&sr=b&sp=r&sig=KfeNGq4ekSb4%2BEWoFmWTx4QAzRruh%2BFjOnBoGA1LOuk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:16.0705826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A16Z&sr=b&sp=r&sig=hrjhxqPr%2FbCZ3%2BAvk7TrStX%2B2EJLugc0x%2Fjq61UnUxc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:16.0706923Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A16Z&se=2024-10-16T06%3A48%3A16Z&sr=c&sp=rl&sig=LbqJ2UMF1bnukm272%2BlqzOE%2BNe6iGrTqOdlKOiEWYI4%3D","expireDateTime":"2024-10-16T06:48:16.07078Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=Q8zZefj3GwgbvomRb6SKIIC%2BozuFIXbmHuWOKpeULzA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9276866Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=nhYUSET0XBqh%2F60cZK%2FZbA3XhiAFWw4EKF01v9Y0HIg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:55.9272682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=GHXN%2BWjA3O5AFngpcnTF2ymDz7z6uz0kMoLixLro960%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9278625Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=JDEOvVGDqO%2FmXR%2BFJX0tr3kzZzj1%2B%2B9RXjgm4kC%2FJlc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9280296Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=2ujXk6vKqdUCuFuEt%2FuAEzcuDlsIBj5biENAyoqBvyI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.9281994Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A55Z&se=2024-11-06T11%3A15%3A55Z&sr=c&sp=rl&sig=QlH0q3elbEvYRA3WWlS2SHbUK2ax459Ifkprus9JKtA%3D","expireDateTime":"2024-11-06T11:15:55.9283669Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:16 GMT + - Wed, 06 Nov 2024 10:15:56 GMT mise-correlation-id: - - 3f52ede3-ceb8-43fd-b33e-cf9382b60043 + - d26ae92c-b1b3-46ab-818b-24fe2cc830db strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054815Z-17f5d8496677xw98qrdesns90400000008s0000000009e00 + - 20241106T101555Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hvv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=Oy90k37IZNjSx4FM4dBNrnHNu%2B%2BhI6WybgXecwSZLNM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.3903666Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=Z48BkvT3i8cZiUsq%2BGmcD6Znx5JkZ8lwMloJFVpc7og%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:21.3899506Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=bJ9Dw84ckHKvkcA2dGMRszJIhPPUkHCBkvTjFKBIpxo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.3905319Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=aLD1%2Bn8Q0q%2F0M6bTdEzeSjNrK1dvwCludiDEjBtfmhY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.3907021Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A21Z&sr=b&sp=r&sig=u7ZziBriaFtX%2BqbFyKIvUaImzKiU4thzp9dmI2OiwHk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:21.3908725Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A21Z&se=2024-10-16T06%3A48%3A21Z&sr=c&sp=rl&sig=m80LkPQFjLx85wpK%2FTJr2c4U%2FvafClbO8U3G7%2FHv3qg%3D","expireDateTime":"2024-10-16T06:48:21.391044Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=p%2FSjdUvDt6ulNe3de6uIXsYxNxegKg49w0A0tZ1m8Sc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.3715261Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=o2LDYx9F06e2GGhPc1rDBVdzcd2ZR65kTR6dORN0vKA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:01.3712981Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=A9LJNdVPQ6tC0P3h8rDCxjoF0HVhBRIuc1Gm0hgBNcA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.3715945Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=XCgvMh25bXc5Sq%2BLdNVeWsF%2FPJ3cTU9mnA6QI4JJg0k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.371735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A01Z&sr=b&sp=r&sig=tjzjWbFpNmidRRPBqx%2F2YYYncvvZCA9atRFxgSy5I7I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:01.3718023Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A01Z&se=2024-11-06T11%3A16%3A01Z&sr=c&sp=rl&sig=7m9HAflTqU9IfNuXKQkhAcL40l4sUXKe%2FzKrOBW9qDE%3D","expireDateTime":"2024-11-06T11:16:01.3720367Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2441,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4890' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:21 GMT + - Wed, 06 Nov 2024 10:16:01 GMT mise-correlation-id: - - 4b5c7a08-ed97-43d4-8693-9782b78fdfce + - c88603b8-6649-4867-a619-4c73c74fdc32 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054821Z-165bfd566cftt5pk5sesfc5t6w00000005zg000000005yeb + - 20241106T101601Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hxs x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=e8wvsqeLB57R0eme4qxgF7EuYxWAXziQnLG8Elb5WDE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.7624242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=2lqjd5uFPK5lCCzxz9mpWlTeMu9WKvbSsJ5HH7fvAw4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:26.7620022Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=wNfM7uRtlZxetKN24SoMdaxk8ghaGjtgAWs8HQXCI4o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.7626474Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=YmC%2FC72eiqlbQgrnL6HrzHp2cF6MXmU4cf3vmGQVSZQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.7628067Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A26Z&sr=b&sp=r&sig=bqA9mEqth1YewHPjKvBt7qx1sfdGBVKfYjLWNmKOEss%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:26.7629065Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A26Z&se=2024-10-16T06%3A48%3A26Z&sr=c&sp=rl&sig=jw8x%2BVuWS3VMTswwk%2BJl5mGlM4OXLHuc5uOSDA8sCu8%3D","expireDateTime":"2024-10-16T06:48:26.7629991Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=Tqho2c7NhAbYhzzM%2FZFdjSeXO%2FKt1gEymvNRPNzoseE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.7560939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=dHQdAtDi2zKdNSRM4H4lpFakqTf74KSgVTwn846krw8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:06.7554878Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=he1CSU4l99jWIP%2BlbqT91d41Njze8oWjNIvjarEZCUU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.756365Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=WGgT2CHWbvssKe%2BWVmEH6%2F73lnuBBs42J4TpqLUIvGE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.7564476Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=xxna%2FvjVkd4kI8kUx7sgeCVRw9YM8BM64IOU6%2F60glI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.7565231Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A13Z&ske=2024-11-06T17%3A12%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A06Z&se=2024-11-06T11%3A16%3A06Z&sr=c&sp=rl&sig=LsBwT9U39y2cvbo6xp4bS%2BzTtNw63%2F42%2FQCbNHUYfgY%3D","expireDateTime":"2024-11-06T11:16:06.7565998Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4893' + - '4900' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:26 GMT + - Wed, 06 Nov 2024 10:16:06 GMT mise-correlation-id: - - 959a505c-a3a3-4a3e-bbe7-defd17d111d5 + - cb6cb67d-fa5d-4fdc-8b3d-3d60f80d3916 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054826Z-165bfd566cfh2hdm2qr2zhn4yg0000000110000000006zxm + - 20241106T101606Z-er1d798b584cft5mhC1SINz3u800000005g0000000004hz9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,12 +2511,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A32Z&sr=b&sp=r&sig=x0LdAWnfhOwS0yQWQWPd%2BpgV9ZVjNVfd1aEs5%2Fwb8BY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:32.0928544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A32Z&sr=b&sp=r&sig=90SR7IJFXk7HcH0KFFcIEwbVtY4DnZJSlFpHSghe2Vo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:32.0924882Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A32Z&sr=b&sp=r&sig=MFaNkpL5Z0GmiXpdEWE8oD%2FJGeHqZLMfUkr61y84gkw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:32.09299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A32Z&sr=b&sp=r&sig=93MJrayKR2uiGpAgZ1r%2FUXQw4gyn6TSNdHDlPEFemC8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:32.0931268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A32Z&sr=b&sp=r&sig=U6rnm0UQ6BApTnTkM7HUVK5tVUgO11eb55jLUECvLPs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:32.0932592Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A31Z&ske=2024-10-16T12%3A44%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A32Z&se=2024-10-16T06%3A48%3A32Z&sr=c&sp=rl&sig=EA5x9LTiG8wSoli3xHqsRHNlgq%2BRZEIUb0FF1kYtJBc%3D","expireDateTime":"2024-10-16T06:48:32.0933884Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=DLMkJzdQBkwv4oXMsLv6sks5D9ksW5h1wM3s5H0Ns8I%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.1366382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=RiS1wU1pQxLhF1LwfOUcSb9CM9TqXOl3mYq7QBcK8SQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:12.136278Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=CVa3CZjz5pX027kAUqzGo6MSC5ObrwFVt4D558BkvQA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.1366941Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=9OJXmM%2B5T%2BM0UJSvpZuOeozTKMNki6eobRYPMzLMqbs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.136745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A12Z&sr=b&sp=r&sig=s3YZztPZIorXauhlJuaoy63EglKG%2B3CFxYHhYTYvCnA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:12.1367943Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A12Z&se=2024-11-06T11%3A16%3A12Z&sr=c&sp=rl&sig=jZp%2BvBbSewD8MYrCgsmLptMtd8%2Fe1sq%2BA4ZQw4JRgLk%3D","expireDateTime":"2024-11-06T11:16:12.1368407Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2650,17 +2525,17 @@ interactions: connection: - keep-alive content-length: - - '4895' + - '4891' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:32 GMT + - Wed, 06 Nov 2024 10:16:12 GMT mise-correlation-id: - - fca2947e-08ea-4c52-be38-e855698bfc05 + - be98a141-e0fe-4b22-99ad-c15d8f6ba786 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054831Z-165bfd566cfg77fdsxzeea5p7n00000009cg00000000a6x2 + - 20241106T101611Z-er1d798b584cft5mhC1SINz3u800000005g0000000004k2r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2678,12 +2553,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=OgL6XwfivpJvdkG7fcsPujU4IIl1ToOWb7Zq90dxUv4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.4531903Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=rtUHi53tjIYx%2FFgmj1BGH5Iv55GcaFpnxl1bB9MNboY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:37.4529123Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=zCxBS3ND5LBtOiOosT7jQ%2B%2FMRVks8H9CJ1J2pVLdOdk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.4532902Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=JCFOhV%2FnmPMUM25lvKcC2Mkf0yCbe%2B8P3ge8Bq%2F1Z78%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.4533885Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A37Z&sr=b&sp=r&sig=pqF8LjM7MIMY21cx0E%2F6%2Fu5lM%2FHpCev45E8eQ%2BminWI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:37.4534891Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A26Z&ske=2024-10-16T12%3A45%3A26Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A37Z&se=2024-10-16T06%3A48%3A37Z&sr=c&sp=rl&sig=hCK2jUfPb%2BP%2FrmZuaXRl6fe8tgLNhhm3DKTX3NZryb0%3D","expireDateTime":"2024-10-16T06:48:37.4536098Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:45:57.924Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:46:49.522Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=ReLOCKyn4EH568n6ZBkZWQ24mufJhLU4%2BxgxxTJ2RYU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.5142751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=CknADsdAKJq2RBTls1CJlOphzcvJkXqsQOobbnZOSvk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:17.5139237Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=sXXWNQUxdi1D4ATID9fy8%2B1kQLehkIKcNrO4usKwgGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.5144061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=OMi%2FPJ7BEGtEVpdwAdGmHyUnhFS%2FhIgQVqHtJJHfqO4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.5145374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A17Z&sr=b&sp=r&sig=P97tJ5dVM1ON2ErX1erFJmz5JvZUIa1Va26vnWnEHmE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:17.514669Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A17Z&se=2024-11-06T11%3A16%3A17Z&sr=c&sp=rl&sig=g76g8ZEeU%2Bp%2Fc0KsnYpMppfQ85k01s0Ndkaa6Yirwko%3D","expireDateTime":"2024-11-06T11:16:17.5148034Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:13:39.241Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:30.091Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2692,17 +2567,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4892' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:37 GMT + - Wed, 06 Nov 2024 10:16:17 GMT mise-correlation-id: - - 2b0d461d-5c32-47df-8c3b-2b16843ecaed + - e5ba8a05-e252-4f98-bdd0-f2b36f56ddcf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054837Z-165bfd566cfwjg8lbgwdvhqf0g00000009rg00000000cqmf + - 20241106T101617Z-er1d798b584cft5mhC1SINz3u800000005g0000000004k6w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2720,13 +2595,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A42Z&sr=b&sp=r&sig=PgcXBodUzJwmu41kkw1MAhIWq6CyEiNox%2BDh2rFa484%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:42.7901725Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A42Z&sr=b&sp=r&sig=LFKR9pkvQb6Yg8CcNsajUJEDaacYhmuZ68SSKpV19J0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:42.7898666Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A42Z&sr=b&sp=r&sig=lePK%2Fv%2B7l3uA5ZE4kNe98Fk%2BS6rKBYqRgGImmJqFdGY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:42.7902852Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A42Z&sr=b&sp=r&sig=xAUlRXej1WTehAdbKP0Obj2K7GkVULZlAjbaSqWBlXs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:42.7903979Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A42Z&sr=b&sp=r&sig=XcywwJGPzn0FKJ%2BzowcPi7grSWbdnOBYHeFZ9btoI10%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:42.7905543Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A44Z&ske=2024-10-16T19%3A45%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A42Z&se=2024-10-16T06%3A48%3A42Z&sr=c&sp=rl&sig=yBUlImbqFs9hj71KRPTM3faj%2B8Vcw5Rv0vGZrpiF7Es%3D","expireDateTime":"2024-10-16T06:48:42.7906583Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:57.924Z","endDateTime":"2024-10-16T05:48:42.471Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:42.776Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=WvlnziSEH1mZa88d2rowtrL9Q5YxA%2FRauhyzubNztWI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.9227036Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=YSLWtGd%2Bz%2F2FG255SWfqGOmKZGVwZMED2e6CJiE4d7A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:22.9223637Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=DVTIemqA%2Bcjv3Zaf%2F5fUE2gDDRphPvZY1RrZfBgaapk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.9228031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=AKxVBNPow%2FYl7MDJfHvmkZZh4%2Bbrv9piPL2UM7IC%2Bqo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.9228929Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=MdSWeFXH7WX5iUSRA959VBr6i9PT7LqcT3MQlFI5A2Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.922988Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A19Z&ske=2024-11-06T17%3A12%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A22Z&se=2024-11-06T11%3A16%3A22Z&sr=c&sp=rl&sig=U0F6UaqQcCtUechQmSu8QyYyeeGJnIjmHT5c%2BD%2F5DrA%3D","expireDateTime":"2024-11-06T11:16:22.9230773Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-06T10:13:39.241Z","endDateTime":"2024-11-06T10:16:19.754Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:16:20.324Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2735,17 +2610,17 @@ interactions: connection: - keep-alive content-length: - - '5027' + - '5028' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:42 GMT + - Wed, 06 Nov 2024 10:16:22 GMT mise-correlation-id: - - 0826552a-fe7c-47d1-85ba-2277e29d84a8 + - 0d90cb91-4498-4506-9b7c-3086644cc5b6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054842Z-17f5d849667b8zgpx3v75uxdz000000009600000000040m0 + - 20241106T101622Z-er1d798b584cft5mhC1SINz3u800000005g0000000004kag x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2763,23 +2638,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:56.6510549Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:56.6510549Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5eb7d474-e637-487c-b85c-0aad02e5e47b.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":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:42 GMT + - Wed, 06 Nov 2024 10:16:25 GMT etag: - - '"c5016a83-0000-0200-0000-670f52b20000"' + - '"fa00843c-0000-0200-0000-672b40e70000"' expires: - '-1' pragma: @@ -2795,7 +2670,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6434C7DF6E564A28A617F7FDE57D4590 Ref B: CO6AA3150218031 Ref C: 2024-10-16T05:48:43Z' + - 'Ref A: 73F3C40C95F14D28B8F0FA8C33C5E300 Ref B: MAA201060515011 Ref C: 2024-11-06T10:16:25Z' status: code: 200 message: OK @@ -2809,13 +2684,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=show-test-case + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=show-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A43Z&sr=b&sp=r&sig=gZUBdnHxSdHXV0NeY0rbEaoBDy3syaBM7lQRnJcmSmQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:43.6529138Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A43Z&sr=b&sp=r&sig=Cg4xT3tJMqG9DCo9kCKsvTZd4888R8v6oItx%2BPbXwrs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:43.6525098Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A43Z&sr=b&sp=r&sig=ZZzZmAlmJMoqJ8fnbPVQirU%2FbTICEQkcXT4x%2BJqZWDI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:43.6530449Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A43Z&sr=b&sp=r&sig=%2BKU7JvzTetiqV%2BZNLv1v6jukhlRdkZPTdQ987LdOO80%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:43.6531739Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A43Z&sr=b&sp=r&sig=fylIiDW9F6fEhzUYTIURva6mOJOHOUgSSbap4jDjJdQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:43.6533309Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A44%3A32Z&ske=2024-10-16T12%3A44%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A43Z&se=2024-10-16T06%3A48%3A43Z&sr=c&sp=rl&sig=QrqpTnfSdCF5q%2BIFwzJR%2B4BJHMgQTFF7D%2FDAQE8crCU%3D","expireDateTime":"2024-10-16T06:48:43.6534843Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:57.924Z","endDateTime":"2024-10-16T05:48:42.471Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:43.122Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=7Zol4eQ4LqnidOrhds0eueEPvq60StgqvHVxVSHVH5g%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0530009Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=pzzS%2B7qbsG9m8e1%2BNpVBxzyAnwal2%2BbTOvM%2FZ24T2%2BM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:29.0527073Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=etjMI52xUFoXblsiRQEPt%2B2QwptEVdbaDCJcUbhHnuM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0530905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=0LSNO5wjAJQbFfYN3b4WOYLOrlNjCoSFAeor9jaxr6Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0531799Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=oqypeUIDBujl6jVih6F%2BSVkbk4krzf%2B4uYKV6fBfH4A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.0532648Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-07T19%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A29Z&se=2024-11-06T11%3A16%3A29Z&sr=c&sp=rl&sig=w%2FJzKx96xKH6BazFEI3y%2Bms2G%2BOdOZu98BOU%2FMifN9E%3D","expireDateTime":"2024-11-06T11:16:29.0533515Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-06T10:13:39.241Z","endDateTime":"2024-11-06T10:16:19.754Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:16:20.324Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2824,17 +2699,17 @@ interactions: connection: - keep-alive content-length: - - '5043' + - '5045' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:43 GMT + - Wed, 06 Nov 2024 10:16:29 GMT mise-correlation-id: - - 54241ceb-eb96-43cd-93b6-21c04a580fcb + - 9ecba815-7f74-4269-866a-9cec0e9ce033 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054843Z-17f5d849667bqf6xbnv2zbvn8n00000009d000000000fxyt + - 20241106T101628Z-er1d798b584jw84bhC1SINb6bs00000005gg000000004ft2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2852,23 +2727,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:43:56.6510549Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:43:56.6510549Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5eb7d474-e637-487c-b85c-0aad02e5e47b.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":"2024-11-06T10:11:28.7280866Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:28.7280866Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:43 GMT + - Wed, 06 Nov 2024 10:16:31 GMT etag: - - '"c5016a83-0000-0200-0000-670f52b20000"' + - '"fa00843c-0000-0200-0000-672b40e70000"' expires: - '-1' pragma: @@ -2884,7 +2759,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1C58129590E34A88B6A122663E000F84 Ref B: CO6AA3150220053 Ref C: 2024-10-16T05:48:44Z' + - 'Ref A: DA3E012E8F5A47B0B3422F2383E5CBBC Ref B: MAA201060514035 Ref C: 2024-11-06T10:16:31Z' status: code: 200 message: OK @@ -2898,13 +2773,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5eb7d474-e637-487c-b85c-0aad02e5e47b.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview + uri: https://23cb3ee2-b6ab-4d5a-a6c2-83a230dd10cf.eastus.cnt-prod.loadtesting.azure.com/test-runs/show-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"bc5700b4-84dc-4293-a69e-974ef1515057":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"4142d5c8-fabe-4e49-bd72-7f61ceb8eaac":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"584b4308-aa0d-427a-9e0d-4dcba63dfdd1":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/4e051850-34c1-4e28-8463-ae47ce6b504a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A44Z&sr=b&sp=r&sig=6oZJp6sVu148d1u0o20JPOB7E6NUey1sAsT9DmabdcY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:44.6072275Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/b6467294-ba8b-45f3-8e25-74e4a9d384c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A44Z&sr=b&sp=r&sig=baDUyM2C6n6NmSe3pWjSIkmLT5hzQ4jYFQlAvFx2R9o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:48:44.6069436Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/e6646184-38e3-410f-9cf7-807dc4c6845d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A44Z&sr=b&sp=r&sig=Fkrb0sl%2FCD8BmqY99Rp%2B9yI%2BqAMSABZSL7KfCmCRmj0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:44.6072927Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/6c268f44-2314-4db7-a16c-b03c41466f4f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A44Z&sr=b&sp=r&sig=GgNrLqAAfF2BQMWCZ4JOi9RWohkd6Baw%2FNZG00hjDtY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:48:44.6073551Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/11f34ce9-69d9-4222-a052-2cda9177bab3/f7e6ddf9-475d-4718-bd26-a52310721ab5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A48%3A44Z&sr=b&sp=r&sig=DoC22T4E%2BMUmFSJS%2F%2Bs6lmOBboGmpbG3nNbxRo5hiC8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:48:44.6074166Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://fg86o7irhzw12lm7q7ncremg.z11.blob.storage.azure.net/8e0f0abe-480d-41aa-8cc4-4cc07c35cb65?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A45%3A56Z&ske=2024-10-17T14%3A45%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A48%3A44Z&se=2024-10-16T06%3A48%3A44Z&sr=c&sp=rl&sig=qQSfnWlBaL43zQdLEb%2BYNG1k2H4K7MxNmBqVvLUhBew%3D","expireDateTime":"2024-10-16T06:48:44.6074772Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-10-16T05:45:57.924Z","endDateTime":"2024-10-16T05:48:42.471Z","executedDateTime":"2024-10-16T05:45:54.238Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-10-16T05:45:55.185Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:43.122Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"692a36b1-ec00-4c0e-8414-8a962eb90a3a":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"e9151262-f449-450e-8048-2681cdc77147":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a52157c3-97a2-43f2-95c4-401b58bb1e7e":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/16b9091e-5078-40c5-bb58-b27682a852c2?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=WhmI1QQU%2Fbo8EYsAUa1daSvRE%2BUbtNtT1aCR1YN3K%2BU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3853746Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/f16e7502-6b18-479d-a330-5b005bf4bcf3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=m%2BO3Weg%2FwHSjDoMezXH0d71ILkoUnBiczpMf1Gf9WZ8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:34.3850621Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/d805f8f5-2973-4ad5-aca3-053e09122fe4?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=bGNFb96VBrimvDp5UfQLETcIAxUuU4PVZqYqBOejQo0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3854876Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/4ef80300-c075-4153-b22c-aba0864ee2f7?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=QWd8Fd%2FQKMbt4sepcRX8T8qiz55QB6VzXhSQOh8yO3I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3856108Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/6fafa542-ffbb-4f71-9732-cac674ad5022?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=0cbET%2BOu0o7suQ7yVRFB%2BBiLMbmqzLCRuvbO%2FLou6N0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3857151Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/086b40e7-8b0b-4513-9409-5000eaed3342_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=yilYC%2B94C08wnz57RwOE1bJkXkRTSf6LaomMPgXFfL4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3858751Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/c59ad174-8365-49ff-9753-df21faba512e/086b40e7-8b0b-4513-9409-5000eaed3342_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A34Z&sr=b&sp=r&sig=5plrQsFjHnO3e8gxL7JXUEPeHojr%2BFM1YHO2BlWLLZE%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:34.3860228Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://sxrljrk3l3zuad1jogkhd4aq.z25.blob.storage.azure.net/086b40e7-8b0b-4513-9409-5000eaed3342?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A14Z&ske=2024-11-06T17%3A12%3A14Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A34Z&se=2024-11-06T11%3A16%3A34Z&sr=c&sp=rl&sig=rDaJ5npe7fC1tzNQDvhM5viCCwxPfOpaL2Uh1wkCKA8%3D","expireDateTime":"2024-11-06T11:16:34.3861481Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"show-test-run-case","displayName":"show-test-run-case","testId":"show-test-case","status":"FAILED","startDateTime":"2024-11-06T10:13:39.241Z","endDateTime":"2024-11-06T10:16:19.754Z","executedDateTime":"2024-11-06T10:13:37.598Z","portalUrl":"https://portal.azure.com/#blade/Microsoft_Azure_CloudNativeTesting/NewReport//resourceId/%2fsubscriptions%2f7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a%2fresourcegroups%2fclitest-load-000001%2fproviders%2fmicrosoft.loadtestservice%2floadtests%2fclitest-load-000002/testId/show-test-case/testRunId/show-test-run-case","createdDateTime":"2024-11-06T10:13:38.642Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:16:29.799Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2913,17 +2789,17 @@ interactions: connection: - keep-alive content-length: - - '5031' + - '6243' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:44 GMT + - Wed, 06 Nov 2024 10:16:34 GMT mise-correlation-id: - - a331fb0f-c0a6-4555-84a0-e3013937d2a5 + - 77edc98f-136f-4d7e-b538-cd0ad148bed9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054844Z-165bfd566cfmx6lk7avu3gk81n00000008f0000000009k2k + - 20241106T101633Z-er1d798b584h6s9ghC1SINqgf000000005hg00000000263k x-cache: - CONFIG_NOCACHE x-content-type-options: 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 cf4df860896..6abaee3ccf9 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:49:43.7688063Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:49:43.7688063Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"32fc19b2-fa98-4752-821f-e469b781cbfc.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":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:16 GMT + - Wed, 06 Nov 2024 10:12:13 GMT etag: - - '"c501c994-0000-0200-0000-670f540d0000"' + - '"fa00e23c-0000-0200-0000-672b40f00000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3AE443CE633D4C408130F5CA0E9385DE Ref B: CO6AA3150217021 Ref C: 2024-10-16T05:50:16Z' + - 'Ref A: 8DB9A4929DAD40E8B9684AB4E784C68D Ref B: MAA201060516027 Ref C: 2024-11-06T10:12:13Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:50:16 GMT + - Wed, 06 Nov 2024 10:12:18 GMT mise-correlation-id: - - 5b69d8ad-ba23-4f14-8213-39c3a4d05a4e + - 37e16957-2aa2-43b1-abfe-a00f7ac033de strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T055016Z-166cf497cd45mnb2hc29k63vhc00000007t0000000008pcr + - 20241106T101217Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6v5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "120"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"e7642b90-01d8-4231-b151-474b6970e412": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "1f2645ac-65fc-4a24-982f-6efda55f250e": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "e1cc8791-4452-4dc9-ab6e-6086359d379c": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "120"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"93598372-950e-485b-b813-abf2c3fe7560": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "113ec4fd-1fee-412f-a7fe-b34a656c4a1a": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "61cf0df3-fae0-4307-98f2-95b6bc8e3998": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '791' + - '818' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:50:17.396Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:17.396Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:18.826Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:12:18.826Z","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 connection: - keep-alive content-length: - - '1052' + - '1046' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:17 GMT + - Wed, 06 Nov 2024 10:12:18 GMT location: - - https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-03-01-preview + - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-03-01-preview mise-correlation-id: - - c00b5ea2-23e6-453a-b329-c4e9a5845eb2 + - 224b7454-42a2-4138-87f7-b5be1b383707 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055017Z-166cf497cd48w6x2zuxa69f51n00000007z0000000009v7a + - 20241106T101218Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6wy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:18 GMT + - Wed, 06 Nov 2024 10:12:19 GMT mise-correlation-id: - - a16e2d3e-524e-4f9b-be5d-bade7dcdaad1 + - 47b307f3-345a-468e-b888-dc3abbc967c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055017Z-18489d46dccvln7t51fh7vb5kw00000008200000000072gp + - 20241106T101219Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6yr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A18Z&ske=2024-10-16T12%3A50%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A18Z&sr=b&sp=r&sig=mC%2F6jfFJTQSfOWgsHqorABtdStZ5ja82veiihJe8b0Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:00:18.7247618Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A20Z&sr=b&sp=r&sig=5U3d4ByJQjGkdYwoAHVDpZ%2Bus05vp34kKJjUq0ZGYk4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:20.0132467Z","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 connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:18 GMT + - Wed, 06 Nov 2024 10:12:20 GMT location: - - https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 90305277-1655-4198-a9d9-2e80c0773cec + - 3ee37a5a-855d-4e37-80e2-953e4534a805 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055018Z-15484bdf457kqcw7c4rchthr0n00000002gg00000000pnt3 + - 20241106T101219Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c6zg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A19Z&sr=b&sp=r&sig=hlh7aIVeTXVUKvnJAPlZD97%2FTlXtmI%2Fq0ACmxRmw098%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:00:19.1747656Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A20Z&sr=b&sp=r&sig=5U3d4ByJQjGkdYwoAHVDpZ%2Bus05vp34kKJjUq0ZGYk4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:22:20.4714048Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '575' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:19 GMT + - Wed, 06 Nov 2024 10:12:20 GMT mise-correlation-id: - - cc4e9d6a-a581-4e0a-812f-030acb87792e + - 5d988dae-1f35-44ca-a6e5-19bfb9ab6550 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055018Z-18489d46dccj85r8e2f8g29m2800000007yg00000000g6n1 + - 20241106T101220Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c71h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A19Z&sr=b&sp=r&sig=dM4VSAspBtQzkJndqxrS0qVmruIOzBIdSnqvyTsEFK0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:19.8064797Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A21Z&sr=b&sp=r&sig=JQJYQtl6qhZbpibv65F6g3wSM%2By39q2TRgn6rXbo8XY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:21.3638725Z","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 connection: - keep-alive content-length: - - '568' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:19 GMT + - Wed, 06 Nov 2024 10:12:21 GMT location: - - https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - adc044fb-5fb5-4eb4-9806-3fe1afce87c9 + - dd6d0c3c-cc24-4f73-9e00-7f67ef034d18 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055019Z-166cf497cd4dfx7788bvx3ssu800000007tg000000007kxm + - 20241106T101220Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c72n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,54 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A22Z&sr=b&sp=r&sig=l3P7LbB9%2BuxN2Gkw%2FvwLM7AZfZuqXN3LETxqwqd7G4Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:22.1063362Z","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 - connection: - - keep-alive - content-length: - - '572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:50:23 GMT - mise-correlation-id: - - 5f8e2240-0fc4-4394-9c35-f09b833fed9f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T055020Z-15484bdf4576j5mtr8k4ftgbd400000002tg00000000abx3 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A28Z&sr=b&sp=r&sig=q5HISg0OgI0cYnvh6qBaTds0lWrqhkP6vuu%2BNEPX7dI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:28.7373166Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A21Z&sr=b&sp=r&sig=JQJYQtl6qhZbpibv65F6g3wSM%2By39q2TRgn6rXbo8XY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:21.7673141Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:28 GMT + - Wed, 06 Nov 2024 10:12:21 GMT mise-correlation-id: - - ee086d53-9ef4-487a-9deb-7b7abdc48306 + - 71950d33-f7d4-4c35-9a3c-eaaba3e366ae strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055028Z-18489d46dccvln7t51fh7vb5kw000000081g000000007ntx + - 20241106T101221Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c74q x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A18Z&ske=2024-10-16T12%3A50%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A34Z&sr=b&sp=r&sig=nRH0YJ47Ulyh2vjQIJonvwwvo84ls8%2Fx24DMbT%2BjCmg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:34.1047075Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A27Z&sr=b&sp=r&sig=cLPxobNYbzcpg2DXDTuMCU4Hh6SsRXwJVnUz8uY8VbQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:27.164765Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:34 GMT + - Wed, 06 Nov 2024 10:12:27 GMT mise-correlation-id: - - 79d24037-8e86-480b-9d58-c33561238bdd + - 25aeef8d-91fc-44d7-968b-ef4185d6b393 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055033Z-166cf497cd45mnb2hc29k63vhc00000007qg00000000es3a + - 20241106T101227Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c7ec x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A18Z&ske=2024-10-16T12%3A50%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A39Z&sr=b&sp=r&sig=ApV2PuhVI8ls7V855X9zNCIQ3AX3fkx%2B2keIbsQzAT4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:39.4780536Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A32Z&sr=b&sp=r&sig=8%2FLmkiOeJB3vb%2FPQDjYWHQkXr6RiT5qKAmyA2ARXNbA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:32.5428028Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:39 GMT + - Wed, 06 Nov 2024 10:12:32 GMT mise-correlation-id: - - 514b86e2-02a4-446e-950f-72057e01c191 + - f292e888-6b51-4920-b093-20d7a49f0be8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055039Z-18489d46dccp2df8e3m20gzz8w00000007sg00000000gnd9 + - 20241106T101232Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c7t1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A44Z&ske=2024-10-16T12%3A50%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A44Z&sr=b&sp=r&sig=QLIpBqMV5YwInoIEj2duBiXPuJC9gCLbF%2BPYCorhbIo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:44.8909276Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A38Z&sr=b&sp=r&sig=EK%2BKDJPZz5%2FlO4dAwEhhFdtF7k1%2BKTUfMF%2BqLQWCNNA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:38.4598317Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:44 GMT + - Wed, 06 Nov 2024 10:12:38 GMT mise-correlation-id: - - 4417ad18-d4e6-43c7-ad23-d7e7ad76c3c3 + - 302c0857-376c-4965-9ebd-90a1ad0798c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055044Z-166cf497cd4r6hmp97992txd7w0000000810000000004quf + - 20241106T101237Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c83z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A50Z&sr=b&sp=r&sig=WYF9XRjBdwhcGJid7h5JlNzXQa2XzPvo5%2F5aMn4H4LI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:50.6395998Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A21Z&ske=2024-11-07T02%3A12%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A43Z&sr=b&sp=r&sig=528xi0dEXUK0431BjwN6QbV6%2BBsoMpVsy6qmJOjTiwY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:43.8718335Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -567,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:50 GMT + - Wed, 06 Nov 2024 10:12:43 GMT mise-correlation-id: - - c651ae1b-d5e2-472d-b5e4-ae87d2532b7a + - 9410dc09-0fdd-408f-81ec-5f5fd9a65e0f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055050Z-166cf497cd48w6x2zuxa69f51n00000007w000000000f8uw + - 20241106T101243Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8eu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -595,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A44Z&ske=2024-10-16T12%3A50%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A56Z&sr=b&sp=r&sig=4HY0Oz6%2B5LJ0VgnCVs9nvn7v7Mqv86dw9oT0Obr%2Facw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:00:56.03641Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A49Z&sr=b&sp=r&sig=AaB%2FpK0MIHgNWgiJ7Q%2ByrNPbMAy86d6i2odbiDmgjv4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:22:49.3400739Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -609,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '568' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:56 GMT + - Wed, 06 Nov 2024 10:12:49 GMT mise-correlation-id: - - ed68cfad-aeb7-4989-af43-461622eecd21 + - dd5306e2-26e5-4a42-ad15-d41fdeabc7e1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055055Z-15484bdf457fxddfyvtw44f6s00000000370000000002mbx + - 20241106T101249Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8u2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -729,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A56Z&sr=b&sp=r&sig=2ktoeGdeCtNGtjTYRyrfkBC9zdeVNW654GAfhjUhUew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:00:56.5687373Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A50Z&sr=b&sp=r&sig=kpj6MX%2FGfWpJW5WZedDu2gJmtGUzKO0wumWjUEsg%2B1o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:50.6052833Z","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 connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:56 GMT + - Wed, 06 Nov 2024 10:12:50 GMT location: - - https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - d503cf3c-8e1e-4357-b5bf-1e2709d57912 + - 437ae576-4550-4bc5-b173-21b9e9308a5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055056Z-166cf497cd4z4rvk0cprvnxxh000000007xg00000000729d + - 20241106T101249Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8v7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,96 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A00%3A56Z&sr=b&sp=r&sig=2ktoeGdeCtNGtjTYRyrfkBC9zdeVNW654GAfhjUhUew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:00:56.9909903Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:50:56 GMT - mise-correlation-id: - - c62f143e-76e7-4670-991f-37443a43053a - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T055056Z-18489d46dccfp7rz6a82yt7pbw0000000800000000002ccy - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A01%3A02Z&sr=b&sp=r&sig=tptdUdmC5ZBs5HoQIF%2B0RjtZ%2BzoXKTnhkYjZvYb7mLo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:01:02.3701866Z","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 - connection: - - keep-alive - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:51:02 GMT - mise-correlation-id: - - ba3a7b43-7647-4312-bbc7-10e5c5f6e978 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T055102Z-165bfd566cf4k2zhgy89gpw604000000093g0000000034uf - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A01%3A07Z&sr=b&sp=r&sig=hfqolOkm4vikBMlsKx2kBRl9EoMa%2FHWMytACxyjLm54%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:01:07.7013701Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A51Z&sr=b&sp=r&sig=730d8d2Yr%2FOi%2BYy0KO6ekwMpX7gH%2FWKykRxDkyp48NM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:51.0245055Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -871,17 +746,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '561' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:07 GMT + - Wed, 06 Nov 2024 10:12:51 GMT mise-correlation-id: - - 2a4f1099-9f17-4f23-a40a-fb839114eaf2 + - b7ccaaa5-fb43-403b-9240-0766d8df4edb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055107Z-165bfd566cfq5wbnrgy8qvqxnn00000009sg000000007tef + - 20241106T101250Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c8ym x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A44Z&ske=2024-10-16T12%3A50%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A01%3A13Z&sr=b&sp=r&sig=jVZpy0uB8v6zifkeVhhOARZFUTzVXTQeU3FnWjJ%2BNRA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:01:13.087173Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A22%3A56Z&sr=b&sp=r&sig=CaAUe0RCaIXk2MkIrNmiS%2BEomFcHFtmpeIEvMxuChLM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:22:56.4151361Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -917,55 +792,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:13 GMT - mise-correlation-id: - - 10e6bfc7-60c0-48d8-89d4-b10f0cfa0a3d - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T055112Z-18489d46dcccphr7hbyy83t0cc000000080000000000402v - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A44Z&ske=2024-10-16T12%3A50%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A01%3A18Z&sr=b&sp=r&sig=7aakjv2dslWSb0hyBzX6eTwA6Zs5WhnHX5kefl3zuJk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:01:18.4539201Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:51:18 GMT + - Wed, 06 Nov 2024 10:12:56 GMT mise-correlation-id: - - ebce39db-3b38-4d48-80fd-220b594d6fe7 + - a0129ffa-7186-40d3-a1c3-3019083a82e4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055118Z-18489d46dcc6jcdlqqc3agq27c000000082g000000000nu2 + - 20241106T101256Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c9d0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A01%3A23Z&sr=b&sp=r&sig=4M4QPryG0jqQ5BiwgDZTNXDgJ0ZfZn3N71IkTbOYNVk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:01:23.7773439Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A01Z&sr=b&sp=r&sig=eWCsueTjqZMbDVjrr2pC9jMedfN%2FPG5DePWGpppXOgU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:01.7724876Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:23 GMT + - Wed, 06 Nov 2024 10:13:01 GMT mise-correlation-id: - - 968a0ccb-0dd7-4fb4-ad04-da26662f33b0 + - 5acdd15b-a2ee-46fa-ab27-069587afc04a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055123Z-166cf497cd4mqn5ksypuy7gvan000000085000000000011f + - 20241106T101301Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000c9xw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A01%3A29Z&sr=b&sp=r&sig=T6%2FZw27b6ax0GdzPhz7EQRlzGlJbB%2BFtNcZHn3OnqJQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:01:29.4920097Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A07Z&sr=b&sp=r&sig=4G5y4OTr6JjsDrXWCqz6i2RBzeij%2FBOTHn%2BlREQmGwM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:07.2353352Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1039,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:29 GMT + - Wed, 06 Nov 2024 10:13:07 GMT mise-correlation-id: - - 63a258bf-21f1-47b0-bcbc-3663782faa24 + - ea5853c2-d04c-41ca-9535-95b837375d5e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055129Z-15484bdf457slw4lnr1b940h0g0000000310000000005zq6 + - 20241106T101307Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000cac3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A01%3A34Z&sr=b&sp=r&sig=pxfFXA4PzxDWPIee9OPkJGIPnEX0rX4Ot%2BQMH%2BOjwno%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:01:34.8555078Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A13Z&sr=b&sp=r&sig=UC9tXpUz4vLLOpv9fd6kCOhBOWRhHXuqQW9qs%2FDFwRc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:23:13.5087457Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1081,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:34 GMT + - Wed, 06 Nov 2024 10:13:13 GMT mise-correlation-id: - - 97958f0c-7f9a-4385-aa24-4502b08ed8f4 + - 32046c0e-3ae0-40ca-a3fe-b5365e443cc1 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055134Z-166cf497cd4ljj2qr0tamq52u000000007w0000000006cm3 + - 20241106T101312Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000cau1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,13 +942,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests/stop-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=3rE0jUh1Ql1lIJg1l8bFSKwScQwHvKlMEl2qOk%2FFMeg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:35.2006755Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=taSyad34Iz4NVpB%2BBI%2FASIOYJoZjfZrMLbzjYvJtk7o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:35.2011251Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=4nFuZUxFbaf7QXJ27alN3cmldg3AEkSGI1VpylR52SA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:35.2012997Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:50:17.396Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:34.18Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A13Z&sr=b&sp=r&sig=oRXMCXExJHPFMOi5KzOEdSmQzbDMiyjQu6Msp%2BAMXKA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:13.8769463Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A13Z&sr=b&sp=r&sig=Z9kEn1CLYwh1So%2BbbPyluBW%2BN1KkgAAzIIBQjnTzNSg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:13.87735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A13Z&sr=b&sp=r&sig=COQ1MeaSDwObPlCKKSe5h9FNPSEuhVv1pSqJ0rdW%2FA0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:13.8775216Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:18.826Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:13.363Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1124,17 +957,17 @@ interactions: connection: - keep-alive content-length: - - '2771' + - '2763' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:35 GMT + - Wed, 06 Nov 2024 10:13:14 GMT mise-correlation-id: - - 7b3c1156-6d3f-45cc-b1eb-0eeb3ca0b0b7 + - 672324b5-968b-4852-bc6c-b2a1ce9295c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055134Z-166cf497cd4z4rvk0cprvnxxh000000007zg000000002y4p + - 20241106T101313Z-er1b6dc89fdv6qgdhC1SG1n7hw000000050000000000cax1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1152,23 +985,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:49:43.7688063Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:49:43.7688063Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"32fc19b2-fa98-4752-821f-e469b781cbfc.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":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:35 GMT + - Wed, 06 Nov 2024 10:13:16 GMT etag: - - '"c501c994-0000-0200-0000-670f540d0000"' + - '"fa00e23c-0000-0200-0000-672b40f00000"' expires: - '-1' pragma: @@ -1184,7 +1017,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2C8C6079FA6947F5A857018619EE636D Ref B: CO6AA3150217053 Ref C: 2024-10-16T05:51:35Z' + - 'Ref A: 17C6F720A7564F6688FED4D29645BCB5 Ref B: MAA201060514051 Ref C: 2024-11-06T10:13:16Z' status: code: 200 message: OK @@ -1198,13 +1031,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A36Z&sr=b&sp=r&sig=6ssV%2FF31wkdMAmZozZNaTBzp0liWpfOXYNlgUKKI8FQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:36.2500666Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A36Z&sr=b&sp=r&sig=xMcPZ0bNCE4uixMYas04SJezrVwPT2vlMVgUUpHST5Q%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:36.2504299Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A36Z&sr=b&sp=r&sig=FCq9DzgZljaY9wQ0UNmyxu502jTzWIgJXFgb4mda67I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:36.2505676Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:50:17.396Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:34.18Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A19Z&sr=b&sp=r&sig=GCZOlHCNLKnESc4LiLIeRYKJj8ccGzZmOsu64lRRHw0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:19.4582824Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A19Z&sr=b&sp=r&sig=HrChPx1SNNf3ZsSA1LBpkc9tSc9GnGiuPZY7fbyjInc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:19.4585561Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A19Z&sr=b&sp=r&sig=FCK9hI4i8YhhWt%2FBYuZZkzbBf3b0GIYSv60dzn8sAUk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:19.4586547Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"stop-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:12:18.826Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:13.363Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1213,17 +1046,17 @@ interactions: connection: - keep-alive content-length: - - '2779' + - '2771' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:36 GMT + - Wed, 06 Nov 2024 10:13:19 GMT mise-correlation-id: - - cc8e89e7-4b55-4ffe-9103-6c5903ea9dd5 + - 1e7d334c-3a2a-4247-bdab-1e779534ec4f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055136Z-166cf497cd47w9bdc501r87meg00000004cg00000000fnxt + - 20241106T101318Z-er1b6dc89fd2px56hC1SG1e6d40000000520000000006gqy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1241,23 +1074,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:49:43.7688063Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:49:43.7688063Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"32fc19b2-fa98-4752-821f-e469b781cbfc.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":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:36 GMT + - Wed, 06 Nov 2024 10:13:21 GMT etag: - - '"c501c994-0000-0200-0000-670f540d0000"' + - '"fa00e23c-0000-0200-0000-672b40f00000"' expires: - '-1' pragma: @@ -1273,7 +1106,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7842FE602DC941BDAA960B4A94F4939D Ref B: CO6AA3150218009 Ref C: 2024-10-16T05:51:36Z' + - 'Ref A: 06D00502037047D8A62FE1B80F628BF4 Ref B: MAA201060514039 Ref C: 2024-11-06T10:13:21Z' status: code: 200 message: OK @@ -1287,9 +1120,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1302,15 +1135,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:51:37 GMT + - Wed, 06 Nov 2024 10:13:26 GMT mise-correlation-id: - - 39be3ea5-7dde-456e-8c45-226cab6b26ba + - e7ad94a2-4a0b-4172-ae51-afaa61383e3c strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T055137Z-18489d46dccnnh2b19wcyx7sm000000007z0000000009uff + - 20241106T101325Z-er1d798b584wktgkhC1SINnqns000000012g000000003595 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1334,31 +1167,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A38Z&sr=b&sp=r&sig=ohGMQLHeMHNuy7ndaRSrkRpMv%2BhSuOsKaGP0RmmRVt8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:38.481961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A38Z&sr=b&sp=r&sig=Kwvrw10f3DD6AEU157U80w2VECaHNSso3HOrHOC4bng%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:38.4816722Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A38Z&sr=b&sp=r&sig=a1O%2Fj40R7hykKw9SvqCAjyjDUymgiYC83jnv3%2FUpU0U%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:38.4820428Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A38Z&sr=b&sp=r&sig=aVyPZNQSNcqYAlbLQRHDGm7zCWWVk%2Bwn6A9KxaGeJFI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:38.4821209Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A38Z&sr=b&sp=r&sig=bgPUR7L%2BQGqNs2hyHtdDuU8os1w8ORxPwkVWvX1K%2B44%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:38.4822094Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A28Z&ske=2024-10-16T12%3A50%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A38Z&se=2024-10-16T06%3A51%3A38Z&sr=c&sp=rl&sig=VEDFA4%2B4WK5ZqOxl%2F98yRhQAP3e0VMeXJFzAEMx93aE%3D","expireDateTime":"2024-10-16T06:51:38.4822959Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:38.248Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=x69Pp7oFjHBqT%2BHLRd5gph55JJXGYXLtbQZInOWJ1Ac%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.3305024Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=LH0pGwTMLVFCndARwUg9uyc1zQGwqTetDAoZzrZtw%2F0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:28.3300387Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=%2FmcRWK0his%2F3sp0s%2Fyo3gcCxhLSw%2Fpi2JB5jvveU2qU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.3305967Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=DvQgHAmPNUu0WucsuHE9G3bbOpHjxx8Ve1B1M0NEdVc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.330691Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A28Z&sr=b&sp=r&sig=45QCfjyyrENRtm9aptcxut09vQOzs3YzEDR2dTtijvc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:28.3307768Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A20Z&ske=2024-11-06T17%3A12%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A28Z&se=2024-11-06T11%3A13%3A28Z&sr=c&sp=rl&sig=Ffjo2BaRpJSTyOCDOkHwrMzeUuy9u87JMD4DOORZ1dw%3D","expireDateTime":"2024-11-06T11:13:28.3308601Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:28.061Z","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 connection: - keep-alive content-length: - - '4859' + - '4844' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:38 GMT + - Wed, 06 Nov 2024 10:13:30 GMT location: - - https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2022-11-01 + - https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2022-11-01 mise-correlation-id: - - ffce2e94-6bba-4940-8a5f-e97333c27135 + - 87ecd870-5047-40da-9143-e93d1035c9f5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055137Z-18489d46dccfkdmbtzwpeeg8f8000000084g000000000sx9 + - 20241106T101326Z-er1d798b584wktgkhC1SINnqns000000012g000000003598 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1376,12 +1209,54 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) + method: GET + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + response: + body: + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=UrCRvjeSpzSa8WcsA82kf%2FhgkkJjYo3HXBSMgv0xrMQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.637293Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=8qrCnvt5nSbZB1U8znoqYb44spQGR7PI2rMdJGzREZ0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:30.6369901Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=aQPpHo0AJ8vZsCEtSPr43HKxGNNIPY9xmjO91taIH%2F0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.6373802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=IgHsHQszRhxnnARbu9wD2X9RrokML2e1qp3MRi1e8zg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.6374761Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A30Z&sr=b&sp=r&sig=3shmTJuZuIuE0lekKNnIk%2BmWbOZs63WJOTFtuDaQNbE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:30.6377682Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A07Z&ske=2024-11-06T17%3A13%3A07Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A30Z&se=2024-11-06T11%3A13%3A30Z&sr=c&sp=rl&sig=GzzxMCeICFR9FsyUsw%2FINtEoift5Islbrf2Djczbxg0%3D","expireDateTime":"2024-11-06T11:13:30.6378742Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:28.061Z","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 + connection: + - keep-alive + content-length: + - '4840' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 06 Nov 2024 10:13:30 GMT + mise-correlation-id: + - 38d4d785-9f8d-436d-a0d9-696f66941b17 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-azure-ref: + - 20241106T101330Z-er1d798b584wktgkhC1SINnqns000000012g0000000035at + 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.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A39Z&sr=b&sp=r&sig=r0TqFJx3LSWpV5Y8HBk6owaW8U0NppBqj04LXbl%2BOJM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:39.0451362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A39Z&sr=b&sp=r&sig=w%2Bo18UEP%2FQu4q9wpPGbKQQ55gRCnDiHaXlDrXscl3Sk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:39.0448595Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A39Z&sr=b&sp=r&sig=S3uYYnhvQwSEsDv%2BBcVs1RjWtpYX60h5ef0azzvsY0s%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:39.0452177Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A39Z&sr=b&sp=r&sig=U%2BYzEZimdaoCM6J%2F6she9VAV%2BRE%2BjG7mqHRkgBXGN7I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:39.0453078Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A39Z&sr=b&sp=r&sig=HKHYLFMHKna25Wtip5B5RHFvzv82%2BpsWW%2FUl8zNbkAo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:39.0453944Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A39Z&se=2024-10-16T06%3A51%3A39Z&sr=c&sp=rl&sig=TsUo8XMgmKMn%2F%2BmHZUZJjQ2C4g9OTIoG7V13ZF6q%2B3Q%3D","expireDateTime":"2024-10-16T06:51:39.0454715Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:51:38.778Z","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:38.896Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=RBwwJ6S6hjKpaQF%2BFcLqRfJaKG0iM4LWdajqTMdGcZw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3892041Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=JJaocd%2Fwjlz9C%2BMPADg3QPk6nqahMPWanXN%2By%2B0cUsU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:36.3155717Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=tipM6swrC%2F%2Bm0nEejDoreWRs2kL45NjA%2FUGyeAKfmz0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3893236Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=bY4JeKKwfRPEP0lSipQ6XKRXx09Vs1cywq42PgtSvMM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3894232Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A36Z&sr=b&sp=r&sig=%2FjobRGTmfmt%2Bn%2BoHNMtONdt88SXKJCPhhTZD1xjiddU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:36.3895321Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A36Z&se=2024-11-06T11%3A13%3A36Z&sr=c&sp=rl&sig=%2BWDfQN3BTQJj%2By4vEws6yQXBfhB380YbO4ZmHX%2BXvNA%3D","expireDateTime":"2024-11-06T11:13:36.3896422Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1390,17 +1265,17 @@ interactions: connection: - keep-alive content-length: - - '4917' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:39 GMT + - Wed, 06 Nov 2024 10:13:36 GMT mise-correlation-id: - - c8600bbf-5cc6-49e8-8670-31b2d2170382 + - e8803d90-3ddd-4690-bda1-2c204fadc97e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055138Z-15484bdf457fxddfyvtw44f6s0000000030000000000p2d1 + - 20241106T101336Z-er1d798b584wktgkhC1SINnqns000000012g0000000035cv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1418,12 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A44Z&sr=b&sp=r&sig=8B%2B3l%2BklxO3QdTeO%2Fl5p6Dzp6g7%2FY6MSNOcEMkolw7o%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:44.4888097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A44Z&sr=b&sp=r&sig=U547FRfWasttkF%2FZZA3rMMyE7ovjd%2Frc2gru8un8%2Bow%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:44.4885345Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A44Z&sr=b&sp=r&sig=wC4ZGdeIV6pgA0PF8zLPjGTvHM445qPwoFLsu%2F8Vc1E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:44.4889078Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A44Z&sr=b&sp=r&sig=9JqUHejY4%2FAFFH8AVmHg3jhMXYiF9wR%2F7uEQVVaUr3A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:44.4889825Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A44Z&sr=b&sp=r&sig=%2BY5NK%2FlPAZC2RmBOIUEVqmjE9AlYLGLIwEaAbN4MJhE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:44.4890378Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T21%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A44Z&se=2024-10-16T06%3A51%3A44Z&sr=c&sp=rl&sig=4tjt%2BpRrtlu2kddhMfe0QoHpz%2FOUIbZwMb4maphblVo%3D","expireDateTime":"2024-10-16T06:51:44.4890863Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:51:38.778Z","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:38.896Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=yAQWut52EJRU1t%2Bv04PRW8%2BlRl2zSTBA%2BZKQJfGWqZs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8141226Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=J6xHtnVKGTKy5qlEhnDkDyZQLY%2FGnfHQhy7opFoibmo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:41.8137022Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=ZLVettfhUU4smfbsFjTy44DraWt86pj7L%2BifyKgo6%2BI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8142743Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=azx2b5ObRBnzDM2wcvyGcJ%2BKLMu%2BVvh8qDnJXx9O5dw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8144Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A41Z&sr=b&sp=r&sig=qNpGMeN%2BIbq%2FM%2FBBDZ3gO17N0BbtXKJgFYXbW3cWYzI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:41.8146051Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A41Z&se=2024-11-06T11%3A13%3A41Z&sr=c&sp=rl&sig=VaxrlAZtSfB9j%2FAewxFxtkvZcDOtbml7DapyZhvovtA%3D","expireDateTime":"2024-11-06T11:13:41.8147318Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1432,17 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '4919' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:44 GMT + - Wed, 06 Nov 2024 10:13:41 GMT mise-correlation-id: - - 11a1f2fc-a441-4cf8-be44-77a5f53e3d71 + - b7bd51c1-c7a8-4aa7-9e55-e09f1098968f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055144Z-15484bdf457fxddfyvtw44f6s0000000035g000000006kke + - 20241106T101341Z-er1d798b584wktgkhC1SINnqns000000012g0000000035f7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A49Z&sr=b&sp=r&sig=zCLN5s8uUtZ%2Fbw8wdl%2BSfH%2FdYVREhOGZzKd%2BeFhRS%2B0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:49.8958967Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A49Z&sr=b&sp=r&sig=5Vc%2BSXvFFaIoV7H59HFPhr1VUbmzJL%2FINBv7gZwy3RE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:49.895439Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A49Z&sr=b&sp=r&sig=i6GqcQncJiZHofMGU9etXEA0U89KVnibxDcn%2FsgcN6c%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:49.8962354Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A49Z&sr=b&sp=r&sig=rV0uHv3kgKhpSoQJVMjcowRudOssMRQitUGtqzqJUDk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:49.8964879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A49Z&sr=b&sp=r&sig=6a5h6z%2BmhEOu5ctahCBRTKsE2diOldRwRZ7Eod0V7o8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:49.8965844Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A49Z&se=2024-10-16T06%3A51%3A49Z&sr=c&sp=rl&sig=qbXqsNAnb5A0t3%2B3oO%2Bs05WeCBlFgLWqOMVhq8hCZc4%3D","expireDateTime":"2024-10-16T06:51:49.8967034Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:51:38.778Z","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:38.896Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=2MY8%2Ff%2B547evGvqbL%2B0oIzNLmaqQx2eNQMrzIgawneM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2082674Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=HBrakHHnHKrv6P1pC8mR%2FXJBELExFz%2BbTvv9%2Bmv%2F8HA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:47.2079362Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=BSuIS77D1J6h0QOXJoZGKnQoHI1bdZsbFhEbpBDFjgo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2083909Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=9ZkpMPbRam75J9b%2B%2FpDEX%2BjMI7Gso9U17iU%2F78FR1KU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2085142Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A47Z&sr=b&sp=r&sig=0luWo0CybOpzFNn9Kul8umEcp8YLLFPorYDMc9CB998%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:47.2086622Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A49Z&ske=2024-11-06T17%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A47Z&se=2024-11-06T11%3A13%3A47Z&sr=c&sp=rl&sig=m11FbNxYyzcRVhlb3JT7nXk%2F2XZ712RkRlT%2BkMjqXa0%3D","expireDateTime":"2024-11-06T11:13:47.2087861Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1349,17 @@ interactions: connection: - keep-alive content-length: - - '4912' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:49 GMT + - Wed, 06 Nov 2024 10:13:47 GMT mise-correlation-id: - - 74b001f3-d1a4-4ee3-9704-caebcaca4816 + - 92886d05-c9e9-4890-b6e8-c7896d54374b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055149Z-18489d46dcc5trkwxb4ya4w12000000007qg00000000grct + - 20241106T101347Z-er1d798b584wktgkhC1SINnqns000000012g0000000035km x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A55Z&sr=b&sp=r&sig=m8yAwyO0x0s77of%2FKTmV5lvpmRPo9Yr3U73Ji2MRSK0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:55.2800013Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A55Z&sr=b&sp=r&sig=KBkZE7Z%2FwnaAnkybTVxKROxDlIfnGhlaVMDtynCX3ZI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:55.2795758Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A55Z&sr=b&sp=r&sig=o%2Fn8bkqq5GSEYBmNW67YVvsFupTbJc76JjNgW9R6Jag%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:55.2801717Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A55Z&sr=b&sp=r&sig=T2%2BuO1a%2BY7yxTBzYHomvgMsTSq4wHpKk8C5N7VcvXtE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:55.2803438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A55Z&sr=b&sp=r&sig=ZIGy%2BTHoGCLfJnZtz7b8ggc9jjIn1H3YeDzcrggGG0s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:55.2805118Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A21Z&ske=2024-10-16T12%3A50%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A55Z&se=2024-10-16T06%3A51%3A55Z&sr=c&sp=rl&sig=h3Y76a18sT0%2B90MjJedpS21ZFlp1swP36rsljw3AQfI%3D","expireDateTime":"2024-10-16T06:51:55.2806791Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:51:38.778Z","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:38.896Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=xfDuVOhP%2Fm7oVimBY5wLXHSjeuNNmboiiSPPn6lmNUs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.6431928Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=CYPHYIfI6D34hcN9ENII4HVDkBQSH69XlSpw9moi1UE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:52.6427161Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=hOIE8q%2BA3%2FexUgojT%2BGcZMsMV%2F67q%2B3KaFpygqyGKvw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.6433294Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=zh0bMtF6VP8YgaCRBxb9MOeoB301Mz3C2uSdIqb2Nts%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.643475Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A52Z&sr=b&sp=r&sig=oc2oEa6pwj%2B7SnnimtSrZVvD%2FJ8gInrW9SoqvZn8X5Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:52.6436161Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A52Z&se=2024-11-06T11%3A13%3A52Z&sr=c&sp=rl&sig=QgLGJCWgeT1Ac2vUSujkMAMOnvw2umeZFZ9%2BncLarkw%3D","expireDateTime":"2024-11-06T11:13:52.6437586Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:55 GMT + - Wed, 06 Nov 2024 10:13:52 GMT mise-correlation-id: - - 77c9069f-1fd8-40d4-819d-63fee8b90b7d + - c92d2d07-13a6-4694-9b09-39107d13a4a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055155Z-166cf497cd4jdw4g4y9hv6ku6n00000007w0000000006n8t + - 20241106T101352Z-er1d798b584wktgkhC1SINnqns000000012g0000000035p8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,23 +1419,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:49:43.7688063Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:49:43.7688063Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"32fc19b2-fa98-4752-821f-e469b781cbfc.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":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:58 GMT + - Wed, 06 Nov 2024 10:13:52 GMT etag: - - '"c501c994-0000-0200-0000-670f540d0000"' + - '"fa00e23c-0000-0200-0000-672b40f00000"' expires: - '-1' pragma: @@ -1576,7 +1451,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4EA7ADA4221C4EDB9718C6956FA2FA43 Ref B: CO6AA3150218017 Ref C: 2024-10-16T05:51:59Z' + - 'Ref A: F7129C7093174ED4B56F417251E316BE Ref B: MAA201060514039 Ref C: 2024-11-06T10:13:53Z' status: code: 200 message: OK @@ -1592,12 +1467,12 @@ interactions: Content-Length: - '0' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: POST - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case:stop?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case:stop?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A59Z&sr=b&sp=r&sig=UaEqYAx6SczsJrp4bv1do53ZWpfqP%2Bguq9bVRCs6iqI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:59.7503463Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A59Z&sr=b&sp=r&sig=FQL965rN3ck8Ol3fJOl4qHCRNa8ZPY%2F3uiEG74EbMC4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:59.7498607Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A59Z&sr=b&sp=r&sig=CBnHqntPkHYIg5YySCZpD%2BQL8ReEXj6cTou%2B437K2vE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:59.7506697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A59Z&sr=b&sp=r&sig=8nmnjAuM7jQv7urkmCbDfCBiNs4WGPDqWADCy%2FJi%2FUM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:59.7509388Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A59Z&sr=b&sp=r&sig=V3K3wk0S%2BnsJzTCCFODe8GwOF1acPwAss%2FPOqQO40PQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:59.7511071Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A19Z&ske=2024-10-16T12%3A50%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A59Z&se=2024-10-16T06%3A51%3A59Z&sr=c&sp=rl&sig=JN8B1nxnmK%2FP1YwiRSF5%2Bsi8QkeoCdv01NN5RZnYAvg%3D","expireDateTime":"2024-10-16T06:51:59.751289Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:51:38.778Z","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:51:38.896Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=L6mZN%2FxuOhp%2F97EABnRcBbQ9DhtlXrUbwCkxufRlGBo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4052659Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=0%2BVnWF7ffl4aWbVFV0GZIvWcLFCmxD6UgenmMXSOVq0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:56.4050653Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=crXwAkXcqolyTfooS%2FHsBAYk4WxdnEw67lzhYEFVOEA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4053172Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=cslChsJLKEFP2OiOelXGq2X%2FZ6MQYxI3MOtKvvJLHbo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4053663Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A56Z&sr=b&sp=r&sig=iCudkw6eBNqv4lmA2HOLxuKfRgJska%2FSnse9THjXecg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:56.4054142Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A30Z&ske=2024-11-07T19%3A13%3A30Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A56Z&se=2024-11-06T11%3A13%3A56Z&sr=c&sp=rl&sig=N9JpBlo1%2B%2BGReml%2BnOp66mbHnsuY9AhsM2o%2FQKX4wkk%3D","expireDateTime":"2024-11-06T11:13:56.4054606Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:13:30.933Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:31.063Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1606,17 +1481,17 @@ interactions: connection: - keep-alive content-length: - - '4851' + - '4841' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:59 GMT + - Wed, 06 Nov 2024 10:13:56 GMT mise-correlation-id: - - 0a090c2b-a39f-4b13-9fa0-5b9de66e8b19 + - 9b7352c1-2887-4ff6-8eaa-8cfd0d3452a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055159Z-18489d46dcc7dl74pe8mubs3xc0000000580000000002rcz + - 20241106T101355Z-er1d798b584dstwlhC1SINq2xc00000005e0000000004u3r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1634,12 +1509,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A51%3A38Z&ske=2024-10-17T14%3A51%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A01Z&sr=b&sp=r&sig=ag66cqMBs797RKoDwVCkL7MGiYG%2F8J9S%2F4zkffcnKM4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:01.1477897Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A51%3A38Z&ske=2024-10-17T14%3A51%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A01Z&sr=b&sp=r&sig=HcpExgD4iEDiolCgXeJJriKzoJ5vwHbBmBfYNhCyejo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:01.1475714Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A51%3A38Z&ske=2024-10-17T14%3A51%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A01Z&sr=b&sp=r&sig=hz4oe7HMiB2ryZc63IPDdDbkC5tYyLH8GesXdxXpXdc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:01.1478711Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A51%3A38Z&ske=2024-10-17T14%3A51%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A01Z&sr=b&sp=r&sig=kSFsLotJvA0DHIVjPgDMSkpRoh25tnHA73f%2B4kFyJ3k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:01.1479509Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A51%3A38Z&ske=2024-10-17T14%3A51%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A01Z&sr=b&sp=r&sig=8M4QlWrAK%2Fp3Nm%2FXmBS40IuKhwRN9%2FkMcToZNjKWays%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:01.1480288Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A51%3A38Z&ske=2024-10-17T14%3A51%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A01Z&se=2024-10-16T06%3A52%3A01Z&sr=c&sp=rl&sig=46daHOkcGbWvxMEWsjfDi7eGb%2FwBz47qDiWm9yBsz3g%3D","expireDateTime":"2024-10-16T06:52:01.1481078Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-10-16T05:51:38.778Z","endDateTime":"2024-10-16T05:51:59.849Z","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:52:01.136Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=M%2FwFLSGi9Gjr4XE5afopK3hAUxVhvwfexw3PKx%2Bw2GM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.0556495Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=i6%2B40zEBG12eifafg7GAIivMxOcQ%2FUyLTZrWHcHp5Sw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:13:58.0552346Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=22GFBiTooTNHNiPtNfxZCXptbijCFfd98PJy%2FtAtYz8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.0558212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=mWqwNF%2FqXypazeQ%2F8PZFT07bDADzZ68Lq6RySHW3T5A%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.0559922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A13%3A58Z&sr=b&sp=r&sig=MRUHpNqh4KRlXU%2BDwFGdqm6OYkMeo9BHp4g4IN4yrpA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:13:58.05616Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A36Z&ske=2024-11-06T17%3A13%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A13%3A58Z&se=2024-11-06T11%3A13%3A58Z&sr=c&sp=rl&sig=3McYZx83AscmRiX0ndAKK0siErUioaiBKIUoMLRvS1Y%3D","expireDateTime":"2024-11-06T11:13:58.0563217Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-11-06T10:13:30.933Z","endDateTime":"2024-11-06T10:13:56.525Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:57.948Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1648,17 +1523,17 @@ interactions: connection: - keep-alive content-length: - - '4943' + - '4932' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:01 GMT + - Wed, 06 Nov 2024 10:13:58 GMT mise-correlation-id: - - 907c9ce6-4067-4ba0-b0a2-dc4ed57ed687 + - 80635145-326d-429a-9e30-e2184176a631 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055200Z-18489d46dccvln7t51fh7vb5kw00000007zg00000000e0zt + - 20241106T101357Z-er1d798b584wktgkhC1SINnqns000000012g0000000035rw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1676,23 +1551,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:49:43.7688063Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:49:43.7688063Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"32fc19b2-fa98-4752-821f-e469b781cbfc.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":"2024-11-06T10:11:36.5450318Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:11:36.5450318Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:20 GMT + - Wed, 06 Nov 2024 10:14:19 GMT etag: - - '"c501c994-0000-0200-0000-670f540d0000"' + - '"fa00e23c-0000-0200-0000-672b40f00000"' expires: - '-1' pragma: @@ -1708,7 +1583,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 94D2ECAB495D46328E1B9B07208338E2 Ref B: CO6AA3150217031 Ref C: 2024-10-16T05:52:20Z' + - 'Ref A: 417851C3EBC0415A875B037AADFD8103 Ref B: MAA201060513023 Ref C: 2024-11-06T10:14:19Z' status: code: 200 message: OK @@ -1722,14 +1597,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://32fc19b2-fa98-4752-821f-e469b781cbfc.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview + uri: https://42d3af20-a09b-43b2-b602-5a27f4b20387.eastus.cnt-prod.loadtesting.azure.com/test-runs/stop-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"e7642b90-01d8-4231-b151-474b6970e412":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"1f2645ac-65fc-4a24-982f-6efda55f250e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e1cc8791-4452-4dc9-ab6e-6086359d379c":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed + string: '{"passFailCriteria":{"passFailMetrics":{"93598372-950e-485b-b813-abf2c3fe7560":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"113ec4fd-1fee-412f-a7fe-b34a656c4a1a":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"61cf0df3-fae0-4307-98f2-95b6bc8e3998":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"120"},"errorDetails":[{"message":"Failed to provision test engines for test run. Please try again. If the issue persists, - please raise a support ticket along with the test run id."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/4b47766b-2ee5-43d7-9ec0-4fe6bba7827f?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A20Z&sr=b&sp=r&sig=t2%2F7Edm35iI92MFZ1uPa29rka5zYckHoIxUOsmuxmcY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:20.930613Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/20c6435e-7c35-4ddd-971b-e8aa3e4efcbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A20Z&sr=b&sp=r&sig=qr2uhBeCpuTRg1W7EePkzGHJQVOB%2Fk7Cfh6MM3eXq20%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:20.9302698Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/79a040f3-5cf7-4fe2-bc5d-36b1ad13210c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A20Z&sr=b&sp=r&sig=Yurjmek%2BPWvtsu8yusnqaZ1S3TNzVDENMSai4Cqutao%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:20.9307471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/49e4078d-afe4-4a38-9a98-0b3954c92529?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A20Z&sr=b&sp=r&sig=RXGMKSX%2B7sJrCdScZFnJRYwY8%2FgKwLMdJ%2BgApXPIfiA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:20.930886Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/0821ecf2-ef15-4ab3-90fa-3c8617b529ae/b3a6ba12-45a6-4926-bede-1745bc1b9370?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A20Z&sr=b&sp=r&sig=Ffq4sX%2B1bjMOXPCgpY9CyDxpzxIPG3qUa3LXDtS9%2Bq4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:20.9310175Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://a15n2zoohab4ie023dtsb91j.z39.blob.storage.azure.net/c5a9cfa0-d640-434f-819b-ca9cd01d89bf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A56Z&ske=2024-10-16T21%3A50%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A20Z&se=2024-10-16T06%3A52%3A20Z&sr=c&sp=rl&sig=sJWt2KA3pRKwsc%2BMrGhg%2BKv2mdDZ%2F0FSROnPM273iPY%3D","expireDateTime":"2024-10-16T06:52:20.9311521Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-10-16T05:51:38.778Z","endDateTime":"2024-10-16T05:51:59.849Z","executedDateTime":"2024-10-16T05:51:37.87Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:51:38.248Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:52:04.538Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + please raise a support ticket along with the test run id."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/e4f138d7-af5f-49ec-9908-84a3a04b2a92?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=94iTfhJBC6k0zZZwOJ9yqsn9nT9FQ6StxC6YOVV%2F48k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4773419Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/2a1ed8ab-33ac-4c3c-adce-2d6a5eea5ab8?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=GaR%2BmAschpgaHRb51jEaE61AuhdVliNJ9MpI3Jf9duQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:22.4769707Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/c496f869-f155-450d-9b8e-d0b57e52475a?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=QOw9i7ZrsD7Uz%2FQIgeK6KBIeMy5JDQsselztqdfAaQY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4774839Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/31a681c9-6a67-46ab-87e7-0f468d821aa6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=heB8AvHW2XJek4zmyCAt6Sl2QRff0Hhnh9JzurAy%2FZ8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4776199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/b9cd14b3-2690-452f-9d67-b26c39f98637/34dd08ff-287c-43be-b7b1-53f953528b47?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A22Z&sr=b&sp=r&sig=QIuA8SaIKKTjlstD2ZFLU%2BvJjnWD3eS7teY9Ryx%2FSsI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:22.4777619Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://swmt69a47rnn9zu4jflpr872.z2.blob.storage.azure.net/0f468544-e8b3-4ace-b94a-228ae592c0ac?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A12%3A50Z&ske=2024-11-07T02%3A12%3A49Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A22Z&se=2024-11-06T11%3A14%3A22Z&sr=c&sp=rl&sig=nUTsYTo3sKG18OuDmDqFkCn7BY5AVNiHZtMEDl3a%2BRk%3D","expireDateTime":"2024-11-06T11:14:22.4779262Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"stop-test-run-case","displayName":"stop-test-run-case","testId":"stop-test-case","status":"CANCELLED","startDateTime":"2024-11-06T10:13:30.933Z","endDateTime":"2024-11-06T10:13:56.525Z","executedDateTime":"2024-11-06T10:13:26.672Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:13:28.061Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:58.478Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1738,17 +1613,17 @@ interactions: connection: - keep-alive content-length: - - '5126' + - '5109' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:20 GMT + - Wed, 06 Nov 2024 10:14:22 GMT mise-correlation-id: - - dc20b24a-d115-4b71-b7fa-8465cdcc078d + - 8daa6d38-2754-4262-89e6-baba9f4929be strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055220Z-18489d46dccj85r8e2f8g29m2800000007y000000000hnst + - 20241106T101421Z-er1d798b584xcbglhC1SINumng00000005qg000000001fdg 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 25742a0ac2e..d1317bef6eb 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:41 GMT + - Wed, 06 Nov 2024 10:13:32 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3C4BE2F28D494F3BA7F1B4DAFDE290E8 Ref B: CO6AA3150217009 Ref C: 2024-10-16T05:48:41Z' + - 'Ref A: 283AD1BF4CCC45188CFE4388D18B56EF Ref B: MAA201060514019 Ref C: 2024-11-06T10:13:32Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:48:41 GMT + - Wed, 06 Nov 2024 10:13:37 GMT mise-correlation-id: - - e58e8ee4-d23d-4741-927b-475058542e80 + - 9cba834e-b3de-4e23-bdd0-c8190d6d0c9f strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054841Z-166cf497cd4mqn5ksypuy7gvan00000007yg00000000eu5n + - 20241106T101336Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gn5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"ea2fee91-565f-48c1-b0aa-00ba207aa6fd": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "0a915c25-9eab-473a-bbce-08dde86bb41e": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "1cb1e196-c226-4193-ad3e-ba2f314b482d": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"1142aa9e-40a4-4a07-8aad-00ed843974df": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "0a298d9b-f8cb-4962-81ea-0e2e984b1459": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "7ee7fa03-1cfb-427d-902c-dd7856638ee4": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:48:42.4Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:48:42.4Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:13:37.856Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:13:37.856Z","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 connection: - keep-alive content-length: - - '1048' + - '1046' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:42 GMT + - Wed, 06 Nov 2024 10:13:38 GMT location: - - https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview + - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 1734326f-2e61-44fe-a10a-e1469a99e02d + - ab55c433-69a4-4d66-b3e3-de948e542994 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054842Z-18489d46dcc7dl74pe8mubs3xc000000054g00000000adxf + - 20241106T101337Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gp6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:42 GMT + - Wed, 06 Nov 2024 10:13:38 GMT mise-correlation-id: - - a1ed92cd-2657-4970-97ef-19f8d5daa137 + - c81017e1-051f-41ca-ba35-007e8acc4db9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054842Z-18489d46dcc5trkwxb4ya4w12000000007v0000000007p1v + - 20241106T101338Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gqk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A58%3A44Z&sr=b&sp=r&sig=%2BVjVHGtUeV0S3NPRYBN0%2Fa6nYb9qxMEZTlG%2FwItip%2FI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:58:44.3067032Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-06T17%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A39Z&sr=b&sp=r&sig=jTMX68vU3rp%2BuHK7KEwNnsBs1al99235vNCyDVetYoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:23:39.1590627Z","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 connection: - keep-alive content-length: - - '578' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:44 GMT + - Wed, 06 Nov 2024 10:13:39 GMT location: - - https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - c6fece97-53d4-4185-b2cc-572d3c81f0b5 + - f306c611-3a78-40b4-ae54-b37ece5dafb4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054842Z-18489d46dccgwx6cyqev009zy000000007s000000000ck4x + - 20241106T101338Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gr9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A58%3A44Z&sr=b&sp=r&sig=%2BVjVHGtUeV0S3NPRYBN0%2Fa6nYb9qxMEZTlG%2FwItip%2FI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:58:44.6698428Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-06T17%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A39Z&sr=b&sp=r&sig=jTMX68vU3rp%2BuHK7KEwNnsBs1al99235vNCyDVetYoA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:23:39.5836557Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '578' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:44 GMT + - Wed, 06 Nov 2024 10:13:39 GMT mise-correlation-id: - - 65f16f58-3669-4374-bd66-35b59985d23c + - adda9c02-1873-406c-8c48-8a778b8ebe86 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054844Z-18489d46dccfp7rz6a82yt7pbw00000007x0000000009fvx + - 20241106T101339Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gs6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A58%3A45Z&sr=b&sp=r&sig=WAPNkLtaI00b%2FiuvgC%2BkW5TU3tDoDIQPr%2Ff5he6Vy%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:58:45.3111903Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A40Z&sr=b&sp=r&sig=84ig46ozJN0EyyVxNu4gzXdnRZg5IdtdBGbfeRi1ja4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:40.1323619Z","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 connection: - keep-alive content-length: - - '575' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:45 GMT + - Wed, 06 Nov 2024 10:13:40 GMT location: - - https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 3a26c732-3dea-4692-bc07-dc9180023ce9 + - 08fc4cae-e990-40d6-b25a-7522e6b84ec2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054844Z-18489d46dcc5trkwxb4ya4w12000000007qg00000000ggqe + - 20241106T101339Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gsq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,54 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A58%3A45Z&sr=b&sp=r&sig=WAPNkLtaI00b%2FiuvgC%2BkW5TU3tDoDIQPr%2Ff5he6Vy%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:58:45.7359237Z","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 - connection: - - keep-alive - content-length: - - '575' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:48:45 GMT - mise-correlation-id: - - 26025ab3-6c7b-4455-8402-c1242204a83d - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054845Z-18489d46dcc7qds9rw9wr310dc000000062g00000000fae3 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A58%3A51Z&sr=b&sp=r&sig=yIRZtAtdXaY8Sf96ZoIsL8f0c1UXzoN05PbF%2FhqI6gg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:58:51.1241115Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A40Z&sr=b&sp=r&sig=LD41gp7tKLWfQgjJ085la3jYGnXX6b37KjPyHeAibBU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:40.6886376Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:51 GMT + - Wed, 06 Nov 2024 10:13:40 GMT mise-correlation-id: - - 8ef6ba08-e803-4454-8fc7-d20283167c27 + - 3a81f954-3724-4311-84b0-957e661381d6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054850Z-18489d46dcck852hghpv4950b000000007u000000000kmuc + - 20241106T101340Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003gtn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A58%3A56Z&sr=b&sp=r&sig=nbeO0%2BYZ2qsCIJNfzT%2BYBVNLF2NWPepvd8BqppWzD%2FQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:58:56.4545008Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A46Z&sr=b&sp=r&sig=Uv5W3zFjB25bsdiwdvNeJgC1XzqHXiWxo9D0IZAZVUk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:46.0848755Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:48:56 GMT + - Wed, 06 Nov 2024 10:13:46 GMT mise-correlation-id: - - 886cabff-5c7c-449b-82b6-df4d050cd881 + - 5a61096b-6c01-4189-b6b3-8ea53ab567fd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054856Z-165bfd566cfrkkwgwcytm810s800000006200000000012zw + - 20241106T101345Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003h46 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A02Z&sr=b&sp=r&sig=8%2BbHI1deBTMeHJP9RS5oOh0zE1IE1rByr7Ftsfap5bI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:59:02.0939722Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A51Z&sr=b&sp=r&sig=XBF7qB7Nej7ZWZTxTPa6fB5OQn2YADSuaOLlFJYQmps%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:51.4589551Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:02 GMT + - Wed, 06 Nov 2024 10:13:51 GMT mise-correlation-id: - - 3e515319-8168-4175-b7dc-18bc00709513 + - 3b18b04e-397a-4111-8ee2-297d9164df66 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054901Z-18489d46dccg5n69wa1d0046r400000007f000000000768m + - 20241106T101351Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003hcm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A09Z&ske=2024-10-16T12%3A49%3A09Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A09Z&sr=b&sp=r&sig=0QGaVLJ0R5BEfM0oNdEr0FvyA8Ho7YFa9RzwSOYqQeE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:59:09.2004037Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A23%3A56Z&sr=b&sp=r&sig=jyCulwGRgOsFj3zqJRbkQLBO5d3D5Lw1NCH0hhmTIrc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:23:56.8988651Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -529,13 +488,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:09 GMT + - Wed, 06 Nov 2024 10:13:57 GMT mise-correlation-id: - - ef464a58-6907-47e4-9db8-7ab756f9b4a4 + - 636305d4-e39e-49fc-82d5-4ee2e9fe1547 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054907Z-18489d46dcc7qds9rw9wr310dc0000000650000000006y86 + - 20241106T101356Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003hqk x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A14Z&sr=b&sp=r&sig=LHpY0FzX5CVSHzlrJ40JZ0qvBEqpyLRn%2BeDVW30gmZE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:59:14.5639794Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A02Z&sr=b&sp=r&sig=n5cx0VCLr%2FCIDG5GXkav%2BlCvASp%2ByZQEjUEtaQsSe4w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:24:02.2822608Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -567,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:14 GMT + - Wed, 06 Nov 2024 10:14:02 GMT mise-correlation-id: - - 2c96c374-6cff-448a-9e65-c83611940b66 + - 592b9492-aa6c-4845-81ba-e4ecb5277365 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054914Z-15484bdf457kqcw7c4rchthr0n00000002s0000000000r6w + - 20241106T101402Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003k09 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -595,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A19Z&sr=b&sp=r&sig=i5Tb63TtlJH7J0A9ha6%2BDOwtJl6jeBAmt9%2BeMRbwMjA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:59:19.9246065Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A39Z&ske=2024-11-06T17%3A13%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A07Z&sr=b&sp=r&sig=4oZrlyHGrZZYqRKLaAkpPFHrgbizLJW%2FC30%2FDAPEplU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:24:07.6451643Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -613,13 +572,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:19 GMT + - Wed, 06 Nov 2024 10:14:07 GMT mise-correlation-id: - - 80c0ca15-b6ab-45a1-a52e-2f32037fae3f + - b420dcce-655c-4548-bd2f-980a92bf8576 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054919Z-166cf497cd48w6x2zuxa69f51n00000007y000000000bn63 + - 20241106T101407Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003kgv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -729,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A20Z&sr=b&sp=r&sig=JtcK5HIWtpPWuZII8Yj1eoJ9z%2B7p9yHWGR06TjwZ4tE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:20.4420993Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A08Z&sr=b&sp=r&sig=7cJ%2B%2BBCT%2F58RF4%2FHLkkMq7NTTFFwdqcPMdjEQAurixE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:08.3502789Z","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 connection: - keep-alive content-length: - - '557' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:20 GMT + - Wed, 06 Nov 2024 10:14:08 GMT location: - - https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 72a10e13-738a-4ea4-9b08-b5da648a5e77 + - 170d7f2f-3338-471c-8c97-dd03f253cd61 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054920Z-18489d46dcc4mwx2ddastu82g800000007tg000000006zvc + - 20241106T101407Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003khf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A20Z&sr=b&sp=r&sig=1orUxxyBv8iTyQLMjKKbvGtUt31DfiRTxytgVdcdDfw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:20.9022296Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A08Z&sr=b&sp=r&sig=zHPhzQkPeRNQaLOiL030tRxfUcXPHBQtfY4FjFWpNpo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:08.9056429Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -791,13 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:20 GMT + - Wed, 06 Nov 2024 10:14:09 GMT mise-correlation-id: - - 23760c38-bc47-4421-a266-ad44ca449d53 + - e85b97ec-bf90-45ae-8944-8254d92fe0e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054920Z-15484bdf457slw4lnr1b940h0g00000002y000000000dqr8 + - 20241106T101408Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003kmd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A26Z&sr=b&sp=r&sig=M2%2BqJw%2Bdaxu7U38sVfN9WFVJbKz8PGYCMz%2FA%2B1VJtdU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:26.3295697Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A14Z&sr=b&sp=r&sig=O2HJ2cNYzrXnwcNjHWhuRRqAVXzCVsJTSa2K44Wdirs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:14.2604864Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -829,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:26 GMT + - Wed, 06 Nov 2024 10:14:14 GMT mise-correlation-id: - - 997fe72f-07a3-4297-9c31-c14b02a20c1f + - f7d17d1b-00da-4d80-8c4d-78967f2cf410 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054926Z-18489d46dcc2nx5gu4q8t6hd2g00000007s000000000fxcm + - 20241106T101414Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003kw9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -857,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A31Z&sr=b&sp=r&sig=2YybukYaaMvDQU%2FEHhgkyJQdq4ZwuMhlUEBpFcKpkHo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:31.7154485Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A19Z&sr=b&sp=r&sig=Ox1kro61%2F6uLkmAPEUq4HFkmb0iYU0BvgvztQUKtQH8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:19.6232105Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -875,13 +834,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:31 GMT + - Wed, 06 Nov 2024 10:14:19 GMT mise-correlation-id: - - 940ffd2c-653a-4723-9262-6719bd900e9d + - 0c695383-0e27-49a3-a7a3-0bfad6d3bd95 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054931Z-166cf497cd45mnb2hc29k63vhc00000007s000000000bat1 + - 20241106T101419Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003m5w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A37Z&sr=b&sp=r&sig=UZfmduAcnaA084pmlCUfH9P%2F7Qk%2FbaQywPYrvZuKhgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:37.1560638Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A24Z&sr=b&sp=r&sig=xDtnEnGaGFyObQOrGFc8JZpMouwiLnKwPI3g5EZ7dn0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:24.9835851Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:37 GMT + - Wed, 06 Nov 2024 10:14:25 GMT mise-correlation-id: - - d164cb65-932d-4688-83c0-a837418f7ad2 + - 56334abd-03fe-469c-99d6-623b85356d03 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054936Z-166cf497cd4r6hmp97992txd7w00000007x000000000f0vv + - 20241106T101424Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003mf5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A42Z&sr=b&sp=r&sig=eSzQTHPiQy0suXjJ4uN8viBVPTJcqpth5MvlmmU2syc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:42.520014Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A30Z&sr=b&sp=r&sig=%2FfGIG6aYanSUCQMaTpOv6B8fu8Y5BFo3bm8BLFRDJws%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:30.3445311Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '554' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:42 GMT + - Wed, 06 Nov 2024 10:14:30 GMT mise-correlation-id: - - ee978a21-d128-465f-99f3-b7ce949fcf88 + - 6b42e4bf-b1a3-4aac-b749-7fc8215bf358 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054942Z-18489d46dcc6jcdlqqc3agq27c00000007vg00000000h9ka + - 20241106T101430Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003mtq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A47Z&sr=b&sp=r&sig=0xwKYjAV0pfkVEmiBEvwOKEfEqif4Q%2B%2BfanW%2BVWKWNI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:47.8947438Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A35Z&sr=b&sp=r&sig=kWeu9UyEJgLZ3qIhAQ6zMYPFzZR3uU%2BuYEAz9KV0AMY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:35.7466426Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '561' + - '557' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:47 GMT + - Wed, 06 Nov 2024 10:14:35 GMT mise-correlation-id: - - bb602831-0179-4e1a-8fa0-9eabe3182831 + - 38ed487b-f603-44ad-b810-0d635045739b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054947Z-18489d46dccgwx6cyqev009zy000000007wg000000000t2a + - 20241106T101435Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003n4d x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +984,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A59%3A53Z&sr=b&sp=r&sig=vAFJjiRocmBauorIrqnPgxKYTenCN57HrtMCg%2BiCSlA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:59:53.2128663Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A24%3A41Z&sr=b&sp=r&sig=lx0lCfVfpCBOirQTzrdZHHAYUFvdajpwQ1UYEkyGLOQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:24:41.1164533Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1039,17 +998,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '553' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:53 GMT + - Wed, 06 Nov 2024 10:14:41 GMT mise-correlation-id: - - c88ea371-0c23-4c1a-ae56-dd36095951b6 + - c0944ba2-a3e7-4dba-ab50-b1194b66156e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054953Z-18489d46dccggs4rh24eyxmvec00000007t000000000ey75 + - 20241106T101440Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003nd8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,13 +1026,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A53Z&sr=b&sp=r&sig=hFBuAY8Utgy4xCoUttKJpSkrgDEXITAze2GXr6D7V6I%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:53.5915963Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A53Z&sr=b&sp=r&sig=cBKJv3QlDFjJbZ5J0a0LJG3q3YSDVS2QaJlP1ogvEPg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:53.5922382Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A53Z&sr=b&sp=r&sig=TWW2CeVIgwPaXfe7rCeuQMmTu%2BA%2BniI0ApHdCYEmZLQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:53.5924609Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:48:42.4Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:50.694Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A41Z&sr=b&sp=r&sig=oAwrs65TWaWUhyLP%2BWgbJv9XENcebZievupvOCzk5mU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:41.4872684Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A41Z&sr=b&sp=r&sig=liKQB6vDV6vZx5lvECVo0PLOeyGLctHvEHGnWl5EUTU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:41.48755Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A41Z&sr=b&sp=r&sig=gcPYoWdU1IgVJFrAUGDupZDjSbZhDEF%2Bg8TTclYbO00%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:41.4876507Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:13:37.856Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:37.506Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1082,17 +1041,17 @@ interactions: connection: - keep-alive content-length: - - '2765' + - '2759' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:53 GMT + - Wed, 06 Nov 2024 10:14:41 GMT mise-correlation-id: - - c40bd43f-fb79-418a-aebb-e2912af2d2f5 + - c90a3982-ec19-44a5-bbaa-03d51beb9842 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054953Z-166cf497cd4q6m55tfpt35bu6000000007sg00000000faru + - 20241106T101441Z-er1b6dc89fdlkq7shC1SG1du280000000560000000003ndt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1110,23 +1069,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:57 GMT + - Wed, 06 Nov 2024 10:14:44 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -1142,7 +1101,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1ABE7CE8579648A6A360519F94E6F577 Ref B: CO6AA3150220027 Ref C: 2024-10-16T05:49:53Z' + - 'Ref A: 0655DFC494304A27860C1D1B8DB11AF6 Ref B: MAA201060514045 Ref C: 2024-11-06T10:14:43Z' status: code: 200 message: OK @@ -1156,13 +1115,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A58Z&sr=b&sp=r&sig=v4eAbD2G4Fq1q3ISTyNzNhyj5EE89t%2FRQJfXZK1ToY0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:49:58.0127932Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A58Z&sr=b&sp=r&sig=MZoYkOVl53zZ4coX5JnRV6SmlFzyrJbHJQpHxIHQ63s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:49:58.0132617Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A49%3A58Z&sr=b&sp=r&sig=48dliCzgqTY5fDBssp5Y73OIds7WZxwYkMl88Zp7%2BzE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:49:58.0133585Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:48:42.4Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:49:50.694Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A47Z&sr=b&sp=r&sig=qpwXmL2KjZy42eLQz65PKq1Cdaashh0%2FoMTPT12i%2B9g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:47.3363058Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A47Z&sr=b&sp=r&sig=lkeoZkjBkekG49uw2NJjYQtC9zvabihjhAbgNDnMVnk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:47.3369972Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A47Z&sr=b&sp=r&sig=E0N1uyboDEtvRNo6Eib4bNYxbNkA4yhvKMXB6aQrOb8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:47.3372898Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:13:37.856Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:37.506Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1171,17 +1130,17 @@ interactions: connection: - keep-alive content-length: - - '2777' + - '2773' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:58 GMT + - Wed, 06 Nov 2024 10:14:47 GMT mise-correlation-id: - - 03096e02-e4d1-4e31-9dc9-4c6382206b4e + - 1fd20c09-fb80-43f6-ae6c-0b12ee88fbc7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054957Z-166cf497cd4dfx7788bvx3ssu800000007rg00000000au0m + - 20241106T101446Z-18557d4f7b89vr94hC1SGE33w400000005kg000000002vpx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,23 +1158,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:49:57 GMT + - Wed, 06 Nov 2024 10:14:49 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -1231,7 +1190,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B619D2B83AA142F283FB57A7E53A7023 Ref B: CO6AA3150218037 Ref C: 2024-10-16T05:49:58Z' + - 'Ref A: 285A85205EFC4A578142A6BB17BD3473 Ref B: MAA201060515021 Ref C: 2024-11-06T10:14:49Z' status: code: 200 message: OK @@ -1245,9 +1204,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestRunNotFound","message":"Test run not found with @@ -1260,15 +1219,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:50:00 GMT + - Wed, 06 Nov 2024 10:14:52 GMT mise-correlation-id: - - 218804fd-e98d-45be-b94f-f4195e14c4b1 + - 2a921e3c-efe3-44f0-b883-b0a625acab2a strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T055000Z-18489d46dccgwx6cyqev009zy000000007vg000000002t9v + - 20241106T101451Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b1qa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1292,31 +1251,31 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A50Z&ske=2024-10-16T19%3A49%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A03Z&sr=b&sp=r&sig=%2F76njmLeYCICN6L8Ci1JPkD86EXRszZayMCfdvLG%2FZU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:03.6566615Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A50Z&ske=2024-10-16T19%3A49%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A03Z&sr=b&sp=r&sig=zdm8FwsQuTMhWWmbaMKxOcRIgMkKZQyRUwUSIu6jTzc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:03.6564198Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A50Z&ske=2024-10-16T19%3A49%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A03Z&sr=b&sp=r&sig=q%2FPcXW7fTHzlE48eoKpN0AK2vyJxUcLH0PY%2Bhplc2LI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:03.6567527Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A50Z&ske=2024-10-16T19%3A49%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A03Z&sr=b&sp=r&sig=a%2FBcj3AGlpScJTef4kic9QUGw8rSLxIdA8%2FdI%2FnVzSA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:03.6568328Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A50Z&ske=2024-10-16T19%3A49%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A03Z&sr=b&sp=r&sig=08cqIO2n2Nuy%2BMnDiGJHWLPvznyMIGqcVx8VuEiYETU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:03.6569223Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A50Z&ske=2024-10-16T19%3A49%3A50Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A03Z&se=2024-10-16T06%3A50%3A03Z&sr=c&sp=rl&sig=X3G4sLrKdG52S89aKukl2Cyr1nTLQ7tPdey6%2FuPy%2BZg%3D","expireDateTime":"2024-10-16T06:50:03.6569999Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"ACCEPTED","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:03.555Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=IS9sfQmKfUA4xFz0XRCtm4%2FxUu0iCuJdi5Qo2iHsEhc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.3999097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=i3bN8MjAgsiiF8Lq2eSFmLJUGH3KGOYTD8pJMe%2FSPfg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:53.3996242Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=nOil%2BQA2Xt%2F%2FUF0etPA%2F%2BrDzLp3WohWdMphE1D9Z%2Fqs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.3999999Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=thGJcvd9jBwzR8GukzHGr6NuUFNjGP%2BtvMIL9AhteA4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.4000857Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A53Z&sr=b&sp=r&sig=mn%2FDsQmA5cqYPDHRC%2FTe8n1DXRpHxkwu6MMzmB9dt3I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:53.4001742Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-07T02%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A53Z&se=2024-11-06T11%3A14%3A53Z&sr=c&sp=rl&sig=kkVSIL8poZxPLpyRq9BGfi3m67%2BeoNCzVSXCDvtYvBc%3D","expireDateTime":"2024-11-06T11:14:53.4002615Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"ACCEPTED","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:53.168Z","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 connection: - keep-alive content-length: - - '4867' + - '4865' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:03 GMT + - Wed, 06 Nov 2024 10:14:55 GMT location: - - https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2022-11-01 + - https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2022-11-01 mise-correlation-id: - - 15fd018b-fdca-4a87-9756-a2ba9c162238 + - 18720280-a299-4d04-b99f-2576d25b232a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055000Z-18489d46dccvln7t51fh7vb5kw0000000840000000001ve1 + - 20241106T101452Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b1sg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1334,12 +1293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A04Z&sr=b&sp=r&sig=uTs59KwFt6OoQl7Wc5SE%2FtNSbF68I04F5KfIjM66ses%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:04.3686629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A04Z&sr=b&sp=r&sig=MJt2NtUncncZT8F2hrcBaAYaCXplfTohLCr3hrUbj0g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:04.3682815Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A04Z&sr=b&sp=r&sig=32ZMJxMWEWQR8rrOSWbdtR3rCkgpT8IAwZQZbmB0%2F8Y%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:04.3688211Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A04Z&sr=b&sp=r&sig=G2D68QJE3mwFjTwwIP3dRRTejnwrlivaKJU6OTjwS8I%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:04.3689512Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A04Z&sr=b&sp=r&sig=71KWN6dpaqEWN%2FdhZWboqDXc%2F9gPIEZjq1UwKS01RJY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:04.3691046Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A04Z&se=2024-10-16T06%3A50%3A04Z&sr=c&sp=rl&sig=7N%2Fiai3hxzt0%2FBvEzlABe8JA0OyPeHkaz%2FQmXtXS9N0%3D","expireDateTime":"2024-10-16T06:50:04.369271Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=gm%2FLryXJuk%2BOtiWT%2FQOtkO2Hb9LOtkSVgiLAhatamUQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7331425Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=pA6Kvr%2FeFduj3MjL0BqmGQorBc0SPhvRT9MlNXWzfLI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:14:55.7328742Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=NbdM9O04f5kPwK%2Fxx9%2BMuXcJ3Bai0PdxivxX584jQPw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7332081Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=0wTCzscL5104Y%2BundW3XIlVPwvsHECzczBKEJ6qpSt4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7332765Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A14%3A55Z&sr=b&sp=r&sig=LKp010E35vI4I%2FR3bOXF%2FLUM6KRPteQ%2BoiX9UQ4Jg3s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:14:55.7333468Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A14%3A55Z&se=2024-11-06T11%3A14%3A55Z&sr=c&sp=rl&sig=oX1Q1zGtCB0ibpjQ6EkhsY9Po7lye6PMy9mVjuhKD7A%3D","expireDateTime":"2024-11-06T11:14:55.7334117Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1348,101 +1307,17 @@ interactions: connection: - keep-alive content-length: - - '4907' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:50:04 GMT - mise-correlation-id: - - 62ca14e3-a775-4d77-91d3-032e85395d76 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T055004Z-15484bdf45792m2k6spfmpcgcc00000002mg00000000evrv - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A09Z&sr=b&sp=r&sig=3iNlZLRqJjaOl3%2FuPaCnLgrkSePS3GmQD5cXIDOzuUc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:09.6971031Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A09Z&sr=b&sp=r&sig=Pa%2FkzUEOvWnbw190z5irpfh5xxUwGBljqU4ggSTMS%2Bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:09.696858Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A09Z&sr=b&sp=r&sig=US%2BoyTO5rqVSYNdwXtMrmWsq3k1qQVAQu2PfED1gJi4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:09.6971993Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A09Z&sr=b&sp=r&sig=RqyxOAvJPri5yyEuY3CbqsIu9GoEsyWFbUbaleob4vg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:09.6972957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A09Z&sr=b&sp=r&sig=QAUQ9kp%2Bt6snf00RkktntZxkWapDUWAJJG89gxwNvTU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:09.6973922Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A09Z&se=2024-10-16T06%3A50%3A09Z&sr=c&sp=rl&sig=YGDz0J8EQ%2BYyNLCBAlqqlAGrsQybR56Fy9RjEwwYSss%3D","expireDateTime":"2024-10-16T06:50:09.6974779Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4905' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:50:09 GMT - mise-correlation-id: - - b71ac707-16e5-421f-9b2a-e3c21123bbfa - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T055009Z-165bfd566cfzsxk8dkexzes4m400000007mg000000009e09 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview - response: - body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A15Z&sr=b&sp=r&sig=D5rjYGOXh02F7%2FIAOM8EwwDKxT7U9Ur75jEqby6iUKU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:15.0820432Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A15Z&sr=b&sp=r&sig=QQM3Uiou47T8xATCJWW3sykAo5ytIOy04BQLy53OHgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:15.0817531Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A15Z&sr=b&sp=r&sig=nowH7oJTIv3Ozt6KSVQyGZjcpAdbTQ%2FMnQrlVUM1s1M%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:15.0821404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A15Z&sr=b&sp=r&sig=044X6ZhKThtYV4GFXpwbBvGgBx52TzD9eTAaQKgVOU0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:15.0822407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A15Z&sr=b&sp=r&sig=Z%2FgUfQVaDYHj%2Ftq1P1%2FQLPlKNxSPrfDmiLbT%2BytX4o4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:15.0823309Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A15Z&se=2024-10-16T06%3A50%3A15Z&sr=c&sp=rl&sig=F2Mkex%2BnKvqrja85mRw%2FmXTQjOZGlBzqw1W16njynkc%3D","expireDateTime":"2024-10-16T06:50:15.0824144Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@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 - connection: - - keep-alive - content-length: - - '4910' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:15 GMT + - Wed, 06 Nov 2024 10:14:55 GMT mise-correlation-id: - - 73208829-cf82-4a32-9a3b-80fbc1928f38 + - 52e3a6ad-91e1-4d6e-b9f0-a499b647f5ab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055014Z-17f5d8496679hzsmtt458u9d04000000085g00000000bk0f + - 20241106T101455Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b22k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1460,12 +1335,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A20Z&sr=b&sp=r&sig=b3%2Fqjmk4TG9pE0yYxqCfwZHCkHAFSR58zA35hDAh%2FT8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:20.4333581Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A20Z&sr=b&sp=r&sig=xDCjhbF%2B9OFbhnbwKzhouUpHNgm7G3bpYq%2FNiU0akFQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:20.4329457Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A20Z&sr=b&sp=r&sig=f1gMicEOLEHQROWhZXdNbh%2FjztkkdiAyulYKEe3Qbkc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:20.4334549Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A20Z&sr=b&sp=r&sig=%2Fl0C8OPVw6wbYJn8Zx1EhGlo08BxxnDQPibpFWgcSNc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:20.433554Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A20Z&sr=b&sp=r&sig=HNNyV1HVt%2FHRwJjnS0P4pewR7w4VQ8DByQPgz%2FPM42s%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:20.4336969Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A20Z&se=2024-10-16T06%3A50%3A20Z&sr=c&sp=rl&sig=fJJkqWG8pBWqXod2N%2FIBo57xu8HqUS5B5NtyMOUy2%2Fc%3D","expireDateTime":"2024-10-16T06:50:20.4337924Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=7ybj%2FF28fwaqs9ueprSznB4R1PXSyxi8VytVSAniYgI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1329695Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=72kVcf%2BbHo8j1NmlCMmAeLpkflyPK72X9uqjZrkIxkc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:01.1327226Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=fDes0%2Fu2ZMjrxIQPu7EuLrcWwAM0C%2Fkpg7Zmv%2Bwl8Qw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1330277Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=tScKzRljW7%2BwCnlB8jOyfA6%2FSDA77LZGh0UNMGxwlzs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1330847Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A01Z&sr=b&sp=r&sig=zWCECCRQ2eokkXkq8l4FVJYBM90URhvurzGP4Oc8ySY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:01.1331401Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A01Z&se=2024-11-06T11%3A15%3A01Z&sr=c&sp=rl&sig=4%2Ffq2xWNquK7zM%2FfDaRWS3goDAZa%2Fwz783HuoYwjIvQ%3D","expireDateTime":"2024-11-06T11:15:01.1331955Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1474,17 +1349,17 @@ interactions: connection: - keep-alive content-length: - - '4913' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:20 GMT + - Wed, 06 Nov 2024 10:15:01 GMT mise-correlation-id: - - 48572532-2f48-4d26-96bf-6f229660fc39 + - 147d0a20-b862-4ab8-a653-2e959661a61c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055020Z-165bfd566cftt5pk5sesfc5t6w00000005zg0000000061a8 + - 20241106T101501Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b2g2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1502,12 +1377,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A25Z&sr=b&sp=r&sig=%2FP7d9kpcXteT6cfopEc0IUGVWigQaILgAAgIfkKax8c%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:25.7752721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A25Z&sr=b&sp=r&sig=Tos9XBcVw%2BjCvJZmN0%2BMf6XbobqfNXMkdTbAquMJtOA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:25.7749974Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A25Z&sr=b&sp=r&sig=4XJcUBjhPkSsYRZyyK%2B9AdE%2BcB0m2UxqAuB9BJIxJEU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:25.7753737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A25Z&sr=b&sp=r&sig=omUTVbxd6MBLvV9ggEvfMzChpjb%2FBTm4dTbyZ429ssA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:25.775467Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A25Z&sr=b&sp=r&sig=T6wPyJrPdG09eIID9SwBdG23yQKjHms1ONu3ApLQjEM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:25.7755628Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A25Z&se=2024-10-16T06%3A50%3A25Z&sr=c&sp=rl&sig=YYt9XP9cn7rbzJMbFzDs6dyc1Ao%2BN4zRB74k8va9E%2BQ%3D","expireDateTime":"2024-10-16T06:50:25.7756502Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=T%2BY5yNx9BQaojhuUFTbVCs%2BGrkkV0uvBCx0xZhHFoiQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6130118Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=P%2Bp6I9wVBsv9V1k2Ole24tNDYXcjkhENeyyH09GPMaM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:06.6126697Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=aOaVYY02DbXATYMhTJzU76ckLdVZT297vWwF%2BE%2BgOjU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6131371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=ggk3IeNsqJzxPNDWQxugqvJrL1%2BR29UlxnG22fnRxFE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6132845Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A06Z&sr=b&sp=r&sig=LpRbqQNyVH963iTNRzcwJkzveBg%2BGYM2HlWI%2BPLBU%2Fk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:06.6134143Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A06Z&se=2024-11-06T11%3A15%3A06Z&sr=c&sp=rl&sig=4jwqKoOHs061rbU40Y2%2BDcIXz5iSxuoprRC1gy1rFPI%3D","expireDateTime":"2024-11-06T11:15:06.6135242Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1516,17 +1391,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4908' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:25 GMT + - Wed, 06 Nov 2024 10:15:06 GMT mise-correlation-id: - - 3bddaac4-0ebc-4512-a611-f740b3d3b1b4 + - 0975e312-efad-4ff0-9e2b-4e06c21d9870 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055025Z-165bfd566cf8d7vsev8ncb6400000000062g000000000chq + - 20241106T101506Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b34t x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1544,12 +1419,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A31Z&sr=b&sp=r&sig=kKHUJkYWzYmZ4EptFmCw87N1j%2BIKl4jSD1Wf3MZPhK8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:31.1246314Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A31Z&sr=b&sp=r&sig=t%2BrDJjvr0gbaKr4IfrV5RB65wch%2FpXQ0HjbX1hwVz68%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:31.1239591Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A31Z&sr=b&sp=r&sig=JqMpwh8JkY1ZaTbLIGe8WUYqfTNgc47%2BwGtElKtGTOQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:31.1248684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A31Z&sr=b&sp=r&sig=YnIiIJk7%2BVQhabUazVJk5qGbwhKPQf7nw9UJ0kcdFUk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:31.1251054Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A31Z&sr=b&sp=r&sig=nO7qgZi7AUkUFgDM8MCv8Rn%2Bqzr5SP%2BLvqzdab0ljfA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:31.1253388Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A31Z&se=2024-10-16T06%3A50%3A31Z&sr=c&sp=rl&sig=hGAiz3lgsPw71gztmAo%2BIFKhFkX3p3kSCSruI8RSge4%3D","expireDateTime":"2024-10-16T06:50:31.1255703Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=kDcf550kTQLnRnr86W97RUD6B6woeGa310JtbH3SLCI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.116872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=SwvH7UQmXp2g3gWoGgIc9sPg33tkql2YpdXAyVfCGjs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:12.1161558Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=P3ZWAXYMTO4C4L%2BMMzM%2FQUCQWfptcmNHodAta4QhdS8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.1171974Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=2sIQxqkuPq%2Fs%2B2NVxxh%2FGFyQ%2FTJu5h7%2BLq4ZmEQ0K98%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.1175721Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A12Z&sr=b&sp=r&sig=scb%2Bn89wyafcVEZ8nAElDx1NfCJixEJjm46GLIYUCVU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:12.1180707Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A12Z&se=2024-11-06T11%3A15%3A12Z&sr=c&sp=rl&sig=F5kAadDfJIdaMYJBBXlFUiBcP7hdhVymFBNx4huptJo%3D","expireDateTime":"2024-11-06T11:15:12.1183351Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1558,17 +1433,17 @@ interactions: connection: - keep-alive content-length: - - '4910' + - '4903' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:31 GMT + - Wed, 06 Nov 2024 10:15:12 GMT mise-correlation-id: - - 30dd60b7-ccf6-4352-9a9d-cfab7ebc8dc0 + - 4be69d09-0ee9-48ae-9f5f-e86fd2d4b0d4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055030Z-17f5d849667v4qhr7z7qcf8ddw00000007500000000062m6 + - 20241106T101511Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b3mr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1586,12 +1461,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A36Z&sr=b&sp=r&sig=jQYIkcefG4DUzjTFt5H0T4voH4QAVW8TCdHbFTR4lV0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:36.4912297Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A36Z&sr=b&sp=r&sig=c5iAQfsMFwZPO6T%2Bm2oHz4aVwyq5auC6vXQxNn0jDZs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:36.4909378Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A36Z&sr=b&sp=r&sig=VGK%2BEtkqJmQWNibBijVpVugIPX%2BVOxbsUYEDRmHJRS4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:36.4913197Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A36Z&sr=b&sp=r&sig=h%2FZOUVxnBP9h5XQEWpahUShpUfvtr73VNowBlsQ2JYo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:36.4913987Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A36Z&sr=b&sp=r&sig=VGdFks19zUP92f9AiS5nocqToaCe8Q%2FrJGLvgtqqWNw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:36.4914836Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A36Z&se=2024-10-16T06%3A50%3A36Z&sr=c&sp=rl&sig=oI5BmFnOfHWbOwkN5Y1oIhuBpAYIdRKQF1J8vpPDQd4%3D","expireDateTime":"2024-10-16T06:50:36.4915696Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=mi5h7XX10DZAonVsQo%2FIvUGA5lLW%2Bgr7ROhh3bDW%2BOs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4929349Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=MEUpqj3l8suKGb32eaBv73x%2F2JmA%2FI2%2FcFb7g6vArOg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:17.4924723Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=vPJOSrqsB%2BQzqyJBxaKYkIVUTCP3zufbQO9bax81eLs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4931055Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=R8%2BJ7GxbxP27Jtm05o0aFCUPQEjzZul%2BDuHChBQJ8fA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4932847Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A17Z&sr=b&sp=r&sig=8PSU%2B%2Fq4T%2FnTcrpr5hF4QuO8bauEbBbn%2FtjyS2%2BK4tw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:17.4934522Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A17Z&se=2024-11-06T11%3A15%3A17Z&sr=c&sp=rl&sig=uh94s%2BPHM7jdKhmZgQuhvO4vjip0oXoWg6xFntpiQ7s%3D","expireDateTime":"2024-11-06T11:15:17.4936291Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1600,17 +1475,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4918' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:36 GMT + - Wed, 06 Nov 2024 10:15:17 GMT mise-correlation-id: - - a0b5598f-c17b-4dc4-88a2-8838ccb4068d + - 04e97898-85c4-40e0-883e-a52280fdc4a2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055036Z-17f5d849667q42pgsnc7zsyqc400000006q0000000000zg3 + - 20241106T101517Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b3xr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1628,12 +1503,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A41Z&sr=b&sp=r&sig=CCQEhJNiTzsoqjlShaBgbiUY7YKTaaoPvpk0vWC2ABk%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:41.8691212Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A41Z&sr=b&sp=r&sig=uo7JI%2Fo%2BlnYtnZxrfYp%2F5GULikyJ8PKgnOXuaoCdTDI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:41.8687826Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A41Z&sr=b&sp=r&sig=ftaryLphbtlUghc2rz769UwjOzMcsKR6d7J4%2B9nYqEk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:41.869264Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A41Z&sr=b&sp=r&sig=7UE1nNcnPvof3UVCL227OmUE83BpZ5W9a0jKRHFrGnU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:41.869392Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A41Z&sr=b&sp=r&sig=NT%2FfVDdgGIhNsmD8iBiYRWYZzJvNhLfM%2B7qYArm7m2g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:41.8695302Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A41Z&se=2024-10-16T06%3A50%3A41Z&sr=c&sp=rl&sig=QjF2vkkLqG6e8Xrt2laQJ5NZ7fwrwTJp2rrTTQn16bM%3D","expireDateTime":"2024-10-16T06:50:41.8696866Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=uGh5gaXnjLLtVRRxGqXb4%2F46a3l%2FOhn86MeOwEAfJto%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8967697Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=ar31FDHG982Wt8To9LIL2AtU5NmA42ke7IOXph5iAjM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:22.8963506Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=sWvvJS9GTJAEtNyXzODmz0Fg33u%2FR8qDP0S6K8R7gjo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8969359Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=gH3kiFMA%2BHRd4LldS82OOAvbWO15zUA6tn3w89TL7Hk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8971063Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A22Z&sr=b&sp=r&sig=0Q%2FYz%2By8oq7NESGs0ib42DNLjxgpHSq8M%2FQN00%2F4oY4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:22.8972706Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A22Z&se=2024-11-06T11%3A15%3A22Z&sr=c&sp=rl&sig=S3bsOObROMq6QU5A34SwlBkgCKTwR8lo7ZE8%2Br9PraY%3D","expireDateTime":"2024-11-06T11:15:22.8974366Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1642,17 +1517,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4906' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:41 GMT + - Wed, 06 Nov 2024 10:15:23 GMT mise-correlation-id: - - 931674ec-2641-40ab-8d0c-f3849c0f255d + - 58133182-5c40-4687-8600-643c19b86c0b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055041Z-17f5d849667q42pgsnc7zsyqc400000006qg00000000007p + - 20241106T101522Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b48u x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1670,12 +1545,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A47Z&sr=b&sp=r&sig=AEq6u27TH57x2N0u1NWdgsIslAa7F%2BKuyMHoYWUw2PA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:47.2317905Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A47Z&sr=b&sp=r&sig=MakO7vIDn4G3t6DpPfJD64rSiCFnWqhHvAWfGVh8aJ0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:47.2314452Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A47Z&sr=b&sp=r&sig=2ynAYkpjvJcVlOZORtik%2BZ%2Bb0sZUxk1FIkFncZ1nt4k%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:47.2319272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A47Z&sr=b&sp=r&sig=XiiewC8ACnY7zaYMGdsrsmEwLvEiKkmTFX26Rg3xn3w%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:47.232068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A47Z&sr=b&sp=r&sig=q5GbpM19brF3All4%2BEHaexBwL%2BaEYdIRPDen3u%2FzC7Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:47.2322074Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A47Z&se=2024-10-16T06%3A50%3A47Z&sr=c&sp=rl&sig=uE2L6R8VJPO18KVqFW1YPeHvnbMJfu00W%2B0vcZb3LkQ%3D","expireDateTime":"2024-10-16T06:50:47.2323434Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:04.236Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=D%2FTjppzua%2F6SdmV0xH3TcOv9E%2FRBr0STmR%2BFdBiM5so%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.2760125Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=lJQ6CJLcqOss28wV1PbMs%2FjcoeBsk6CN81U7DYHwHGM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:28.2756214Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=5trzsIMdKPDGFkL9G2N683OW0dEWXdBFXnM%2Ffz05NzM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.2761494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=SaLKYS6Eig22uLIkI%2BLs%2B6A4ajQ7eUQ2edI5Og4QX8U%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.276287Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A28Z&sr=b&sp=r&sig=mHm9KzsZ%2FG%2FTv3j3ZZ%2B%2Fo9omAATv4u2Tp1cAW%2FdlSu0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:28.2764214Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A28Z&se=2024-11-06T11%3A15%3A28Z&sr=c&sp=rl&sig=XBP2N%2FeBtOZtFqXVXvhFucQT8ri8Yj3HPedTGjL%2Ff%2BE%3D","expireDateTime":"2024-11-06T11:15:28.2765517Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1684,17 +1559,17 @@ interactions: connection: - keep-alive content-length: - - '4907' + - '4919' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:47 GMT + - Wed, 06 Nov 2024 10:15:28 GMT mise-correlation-id: - - dde08598-538d-402c-9300-cb9ba621ae0b + - ddfe5755-2c8e-4ad0-96e2-1956bf58fb56 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055047Z-18489d46dccfp7rz6a82yt7pbw00000007yg000000006udd + - 20241106T101528Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b4nh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1712,12 +1587,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A52Z&sr=b&sp=r&sig=WX%2BGTTSgdkHncP6QVwsdUXQEpN%2FtPwojdc8OrclA6a0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:52.4723515Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A52Z&sr=b&sp=r&sig=Sg6h%2FRg6YiD3lq%2BSultlMuIEUhUAYERTYD9y%2BukqJzU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:52.4719682Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A52Z&sr=b&sp=r&sig=dULJzgvfvqr3%2FtWV6bj6njj84DyVGUoH5ddgAOnlv14%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:52.4724954Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A52Z&sr=b&sp=r&sig=TMY5uAQic4lGQLn%2BhJPL%2FyfhZjpFnKZi5kArCqv7JMM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:52.4726352Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A52Z&sr=b&sp=r&sig=MQ7IO0XefmMB%2BQoQb8bMa4IPsNxbY99PBOQDRK341oQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:52.4727725Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A52Z&se=2024-10-16T06%3A50%3A52Z&sr=c&sp=rl&sig=qEtEs%2FtlU%2B05RRJxo8V%2ByuwGMYkq08I%2F95nn0gY%2BfxU%3D","expireDateTime":"2024-10-16T06:50:52.4729069Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONED","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:52.287Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=IxMBGWNS30o8AMr0WxnBlC10FOHRmHvILaRxYHIBgcM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.680854Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=EthiqGRGNnqwDOkdHkWFwd%2Ffsp2zYwFogrhYjc3GMVY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:33.6803948Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=cO3%2FTPJ3wLZfVnGKeWJ2pcbdWHGjZqbhGAysB6Zdml8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.6810258Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=TUaVQ3cIIk2n6DK%2FzS%2BDjwDtFhRngPoBdnu87YVpqQA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.6812033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A33Z&sr=b&sp=r&sig=yBTe2h%2FLCtXsJii2aKLh%2F54Tx5mB9inz%2BRlruBAJolQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:33.6813898Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A33Z&se=2024-11-06T11%3A15%3A33Z&sr=c&sp=rl&sig=Ett2TydzQrknb79fcMTPVmupjlgpRIEUpoAGVKJ%2Fl3c%3D","expireDateTime":"2024-11-06T11:15:33.681563Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1726,17 +1601,17 @@ interactions: connection: - keep-alive content-length: - - '4921' + - '4902' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:52 GMT + - Wed, 06 Nov 2024 10:15:33 GMT mise-correlation-id: - - 7ce5c44f-3440-4e3e-be6a-ce9c8862cc6e + - 5cde64d1-eeaf-4735-ac11-fa29bd2d7a76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055052Z-18489d46dcccphr7hbyy83t0cc00000007zg000000005tkr + - 20241106T101533Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b4z7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1754,12 +1629,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A57Z&sr=b&sp=r&sig=qQUehUyc2IZbNV7mrjUZ%2Fcu2oyCkDHttSqi9hvDTVVg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:57.6948082Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A57Z&sr=b&sp=r&sig=f6DDwVvekwOXGOfLTyuVfBsqLetTbxATPhF9%2BmlND74%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:50:57.6942922Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A57Z&sr=b&sp=r&sig=TfjhgpGwT%2FoSZEl6atpXF7IHzmy2HrL099Vgx0s8eE0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:57.6950249Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A57Z&sr=b&sp=r&sig=WPfdVG3zEcYPxqUnV1Qq06W2mynA5zGRofP3jR9JxnI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:50:57.6951241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A50%3A57Z&sr=b&sp=r&sig=IOBiyjZvm%2BUkRY5JuDmRLZkHm%2B9GXPjbWyksKLvGCZk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:50:57.6952174Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A50%3A57Z&se=2024-10-16T06%3A50%3A57Z&sr=c&sp=rl&sig=ofOHUr0h7Q7e3QDHhh8lTWwlaQd9uvma35kzdoFSOc8%3D","expireDateTime":"2024-10-16T06:50:57.6953012Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:53.067Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=4VKKmE%2BCwdYpPMAsOYtzFTdGMJns88qjBSsj5pca1LU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0544034Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=mId6Jnxi%2FyOjg%2Fe6qGLBOlg8Pr2CbwKPvrhEtf7U9bw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:39.0540782Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=vwrTniUPymVj6xyz0X%2BrYZZyEpqcVRDCG24ckqIt7Iw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0544936Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=il0lhL0z1nFIAYC%2F9tQ3MraZXBAb7hdU20PNL1307tE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0545841Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A39Z&sr=b&sp=r&sig=dtL5qoHPeq3bkaQ%2BG1MsxuGt%2FE%2FKNXy%2BSiNpg0yoV%2Fo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:39.0546703Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A39Z&se=2024-11-06T11%3A15%3A39Z&sr=c&sp=rl&sig=y2pLe8o5Bmun4%2F3Qlc5huveCyiPACZWk8GBY23lKPK0%3D","expireDateTime":"2024-11-06T11:15:39.0547623Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"PROVISIONING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:14:55.593Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1768,17 +1643,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4910' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:50:57 GMT + - Wed, 06 Nov 2024 10:15:39 GMT mise-correlation-id: - - 314c97fa-e390-442f-bfe0-dbe443cb3638 + - 4ef8b6db-8c2f-446a-a429-8ae729b7f1d5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055057Z-166cf497cd4qwz4p7wbrzn166c00000002b000000000b7xe + - 20241106T101538Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b57s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1796,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A03Z&sr=b&sp=r&sig=642ThdkbTnT5qiKsiOnA009gs%2BOUaBvMEKfHi1Pmnc8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:03.0716506Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A03Z&sr=b&sp=r&sig=MktVw8ccJ7TfbLZuJ28uVQq4yaEBctpur3XtvEHxWpE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:03.0711912Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A03Z&sr=b&sp=r&sig=00oH1DGR8Kf8dIkVztsOPfuRyeklnStF4YUDWdTZWwE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:03.0718079Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A03Z&sr=b&sp=r&sig=ZolegF65Z2dLustPQ2G8KRGzEHaun0h2TntLS4VrAMA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:03.0719126Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A03Z&sr=b&sp=r&sig=BZEr5xg08fKyxS6Pt%2FBpKWQFCsdRLUn2bnoB5P4kLNQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:03.0720126Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A03Z&se=2024-10-16T06%3A51%3A03Z&sr=c&sp=rl&sig=Q4C7aSIhPOiqe6BW81fFthv2XYhxa4kynbpAX%2FRNwSA%3D","expireDateTime":"2024-10-16T06:51:03.0721032Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=iB2kuXCgP9iVxo4WvkZkSkLcKQCZg2Dy9zBvQxR8qlQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4182833Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=Kzev0TKDJYDExpM20hXMS8BodnsYST2LwuqMBF0q8GQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:44.4137696Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=u%2F2K0kAG4w814xxqFyMvSk9ac0XqhqRQnhg2O0%2BL1uI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4185684Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=vBhBWxY8sBWpB8wm8rahcoUPBb2WcHkZSoPt%2BdEA%2Bjw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4188446Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A44Z&sr=b&sp=r&sig=iQwnmBrAzpvc7%2FwHO9XaXu05HAp2jT4oTnxTLIYMOn0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:44.4191011Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A44Z&se=2024-11-06T11%3A15%3A44Z&sr=c&sp=rl&sig=UrD2qqvWBezfgQ1uCXzfglz5UbHUEwd6Arbox4nch3w%3D","expireDateTime":"2024-11-06T11:15:44.4193668Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"CONFIGURING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:40.077Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1814,13 +1689,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:03 GMT + - Wed, 06 Nov 2024 10:15:44 GMT mise-correlation-id: - - 024b046b-da54-4d67-ba08-c31f96a6d8b9 + - 82f13af5-7fc1-4330-aab3-6efd3b2d5679 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055102Z-18489d46dccfkdmbtzwpeeg8f800000007xg00000000hgg5 + - 20241106T101544Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b5mn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1838,12 +1713,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A08Z&sr=b&sp=r&sig=59Dqg3qV8TKZEGBjqcxayyxKGLLlqR4bxllA3Xar5yA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:08.3260961Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A08Z&sr=b&sp=r&sig=GP1Ym%2BhTXxlpWLl4Q%2B%2FCawYiHxNQjP3h13RKXPhxTMk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:08.3256576Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A08Z&sr=b&sp=r&sig=eQMB0qZvAOMVOsSHrXi6o3UupWQR9wmfEd2Kil%2Fjz10%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:08.3262524Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A08Z&sr=b&sp=r&sig=%2FpU3q8tuga5rdZ8a2tIzexloErTJ%2BroOQa%2FvrXTqTvs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:08.3264369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A08Z&sr=b&sp=r&sig=VWs4aowu%2Ff%2FozWDWXm2%2FNh13NzI0mNRCsyuUNmig%2BdY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:08.3266633Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A08Z&se=2024-10-16T06%3A51%3A08Z&sr=c&sp=rl&sig=CJkRuKMKvXFe9FyCN4q58HMYve2VTDp3PLHNegWQPoc%3D","expireDateTime":"2024-10-16T06:51:08.3268463Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=MVBGhn9h7WPLHs2eBoETvBEtou7S%2FDczLDdy8iGOD6E%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.8262809Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=LFYQss81OEw%2FWBxait1ZDF61FEKv5xcl89TIHF1yiyM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:49.8258786Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=Khdxwktsnp43sTj4eitAItV5kP6lvvl9%2BHKXLn0Ntf8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.826447Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=4iNcaFcA1OS5iFPFyFK7BFQYpkuLC23%2BSPdq2BcSty8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.8266191Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A49Z&sr=b&sp=r&sig=DV8r4jz%2FhlzNEGNsiIIQ3Ge%2FIFxBNJ5o%2FH%2BS18fV%2B3I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:49.8267849Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A49Z&se=2024-11-06T11%3A15%3A49Z&sr=c&sp=rl&sig=LonlDtoB%2FWMcKhQ2dbJHC5ZclFrYP7bgz676sPCNp8c%3D","expireDateTime":"2024-11-06T11:15:49.8269533Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1852,17 +1727,17 @@ interactions: connection: - keep-alive content-length: - - '4913' + - '4904' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:08 GMT + - Wed, 06 Nov 2024 10:15:49 GMT mise-correlation-id: - - b50d0758-d1ab-4dc3-bcb5-830b0b464846 + - 5a706e9e-ac4a-46d7-8b39-f32b8f7fb2a4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055108Z-166cf497cd48w6x2zuxa69f51n00000007w000000000f9bt + - 20241106T101549Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b5zv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1880,12 +1755,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A13Z&sr=b&sp=r&sig=0IPcI9nbm9IuDLphOij%2BNn5FqwOYGvBmSvwBBEdPv8Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:13.7347241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A13Z&sr=b&sp=r&sig=1RHImfM3Bj6x0y5fECYcvvrQr%2BF6DBW3gDQFncOK45M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:13.7340417Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A13Z&sr=b&sp=r&sig=%2FYcv23FyaevSPsD5ONkbYmOEg7TXycjXdL5uK%2FsH9ew%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:13.7348458Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A13Z&sr=b&sp=r&sig=8BFbli56UxsBD4BpNghOLm%2BOaPbQyf8dGWjV3r0WQsU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:13.7349797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A13Z&sr=b&sp=r&sig=bQoGbx0Wsidqd6FkQyOmd8gvvoAEQf5uIFfdNZEwfa0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:13.7351404Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A13Z&se=2024-10-16T06%3A51%3A13Z&sr=c&sp=rl&sig=1Gwbmir0PIWYyHjQhltwPFZN4iAgs%2Bb24FjpWh9uU4o%3D","expireDateTime":"2024-10-16T06:51:13.7352727Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=WVlQGX0o4NhANXfHcXEFLd7zhoZf3J63ElAyi4G%2FvSs%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2287015Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=3tA2Y69dyT0Ze5pjtGwX5l5XMV0Zfa7R1s4fr0bexZw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:15:55.2284141Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=F26NoalXk1aChg82SbFCaHpJghoZH1aKASF6BlTg8r4%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2288094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=Ec9kkgp8UUbd8oeryRmOsFXfnQIRM30%2BfqdfispPUDY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2289051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A15%3A55Z&sr=b&sp=r&sig=f8BRoUmyFRSZ11%2F6KX%2FiuEpDY0L9hhjlF35bZK7GO%2Bs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:15:55.2289926Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A15%3A55Z&se=2024-11-06T11%3A15%3A55Z&sr=c&sp=rl&sig=KWdsW9fIJ4rM%2B%2BNvwzXo45YP7lxT%2BmBBJhT%2Fg%2FNf%2FsI%3D","expireDateTime":"2024-11-06T11:15:55.2290868Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1894,17 +1769,17 @@ interactions: connection: - keep-alive content-length: - - '4903' + - '4907' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:13 GMT + - Wed, 06 Nov 2024 10:15:55 GMT mise-correlation-id: - - 87a645fb-04b0-4a3a-9f5d-b50967fec027 + - 2bee69c5-dc50-4c93-9755-47ab1f87d582 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055113Z-18489d46dcccphr7hbyy83t0cc00000007v000000000gbmd + - 20241106T101555Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b691 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1922,12 +1797,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A19Z&sr=b&sp=r&sig=DnVb%2B91zwFjAEjw%2FUagtdIYeTib0m4%2BbmDlYEV8Ic%2Bc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:19.0619337Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A19Z&sr=b&sp=r&sig=ebl%2B1wUR4pynvkzF8VHaoZV80U9s85VuzkllIkq5vMw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:19.0615286Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A19Z&sr=b&sp=r&sig=3T2Lgxv0sm5xXEjiM0CSnq0Ve5sas1AOgIIt%2FmXhykY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:19.0621157Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A19Z&sr=b&sp=r&sig=nk7Ql8v4hr0sk%2BHrxqkFTPy7hawoOpTf9e2r6HpDjEM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:19.0622416Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A19Z&sr=b&sp=r&sig=cSwKVl%2B%2Fd%2BIamMeeZ9QiJmMiHuQfTz%2BsGb1FvguiH4M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:19.0623736Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A19Z&se=2024-10-16T06%3A51%3A19Z&sr=c&sp=rl&sig=8NoUfCNpGSLLmjtSC60eILLPDP6HU1X1InXCxs7zI68%3D","expireDateTime":"2024-10-16T06:51:19.0625134Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=tGE%2FtG2B3NyoEFn57wGHB1dlmht80a1Advs1YuTKHjc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6628202Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=yUDOzwdbrSYT3wahUbyw6dUEmxU6cQBQr%2FQRVcoVqqo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:00.6624402Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=H5nfhwql%2FkkkuD%2B6JXVmTR%2Bew7QuH913aMSpQDBMtaA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6629908Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=nD%2BQeuWB7ysUijIDsV1u3YGs6CpG5e3B%2B19X38k8Zfg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6632039Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A00Z&sr=b&sp=r&sig=5XW9rbxEnu1kt7W9rrqxCsBhEvjIaXlVu1z4UqlxhU4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:00.6635498Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A00Z&se=2024-11-06T11%3A16%3A00Z&sr=c&sp=rl&sig=Z0g51ugvA1uhSYvby3waiCyTwJrcmduhhvYpFbQzDro%3D","expireDateTime":"2024-11-06T11:16:00.6637418Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1936,17 +1811,17 @@ interactions: connection: - keep-alive content-length: - - '4913' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:19 GMT + - Wed, 06 Nov 2024 10:16:00 GMT mise-correlation-id: - - 460b949b-eb9a-4faa-8fb3-7c0e90e7bec5 + - 3e0ac9e3-9b8f-4baa-bb52-e7951d908c36 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055118Z-17f5d849667l8zqnh8wn56gx4400000008dg00000000f9c8 + - 20241106T101600Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b6q9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1964,12 +1839,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A24Z&sr=b&sp=r&sig=J8fEi6e9O5AZ2qpyGXI%2FqibZiCFxILep6M%2FwR7FTp0Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:24.412109Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A24Z&sr=b&sp=r&sig=ayW30%2FMjtM%2B0IENMkGmSsbfhhfZpF3uxtyFTPv0IRm4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:24.4118Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A24Z&sr=b&sp=r&sig=tOdtJEG%2BN%2BBIITaXuOrbBgRAAi8%2F5NBrcoObXfvnTJY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:24.4122496Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A24Z&sr=b&sp=r&sig=jwkNz4CN39lWZwGKDvRWQWNA0LFwW2Ds%2FyLAv4WeDJE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:24.4123884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A24Z&sr=b&sp=r&sig=AilosszMIz9VYeS0L%2FOsDCwCexsKAxHZvpdaRhDhGyQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:24.4125268Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A24Z&se=2024-10-16T06%3A51%3A24Z&sr=c&sp=rl&sig=9AActT0oAERkFHlML2zcqNYUhhXP3hY5ih5vZAAVwZs%3D","expireDateTime":"2024-10-16T06:51:24.4126661Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=OBaHhLMrd0hxZtsLB%2BSN%2B7omcvpP9aGhkLOOE6eMV3k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.1118822Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=H8wiCSkP7fzc5pTor5b%2BStuZmBPdLJ1lN6efFFbyHOk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:06.1116314Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=fuXo20tZZH4JedILy79xQgxEtmU0HoYiiQiiuJmaTP0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.1119594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=tWHzzcVRfl0H0J6HNCSFfVy3DbaPMHeqB%2FLp2U8lYbM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.1120295Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A06Z&sr=b&sp=r&sig=nW4bgOFLgjaTNTnaBlarIW4wVoCcadYYEpJVcLLegCE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:06.112102Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A06Z&se=2024-11-06T11%3A16%3A06Z&sr=c&sp=rl&sig=lUj23FDV5L3f10uFSUtCG1cqmQ3bOZEcIzENgQ5efIE%3D","expireDateTime":"2024-11-06T11:16:06.1121725Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1978,17 +1853,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4892' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:24 GMT + - Wed, 06 Nov 2024 10:16:06 GMT mise-correlation-id: - - 48223ebd-5003-4bcf-8085-50cbb032180b + - 420fe28a-937f-43ba-a04e-89dd1bdd9eb6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055124Z-165bfd566cfwjg8lbgwdvhqf0g00000009u0000000007peg + - 20241106T101605Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b722 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2006,12 +1881,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A29Z&sr=b&sp=r&sig=fYGQbnyD%2Fm%2BChHejL%2BVt3VlrjtbnTSgAgjlVS4bNEBo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:29.7416068Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A29Z&sr=b&sp=r&sig=KgrRNgLpvSOqpkd%2BALWeCq%2BvsGR3jamkk4SXuXTBwLA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:29.7413872Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A29Z&sr=b&sp=r&sig=t4k9DIlVexPhKIDqQvEjnFnsfIlNQXexcPAZEvWY2pE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:29.7417033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A29Z&sr=b&sp=r&sig=brvVewP6Igrdh1YbpOXVgS6m3ZE%2B0y1k2vU3QaOtGlM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:29.7417996Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A29Z&sr=b&sp=r&sig=JI6%2FbaxOoZP7LmNOSp4hY69bEqoJyBHUZ5YDiSo%2FHcY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:29.7418981Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A29Z&se=2024-10-16T06%3A51%3A29Z&sr=c&sp=rl&sig=VfuyYCkaKzxVGcOh5On7pjMsvclu9Bu7pEIKD%2FLkzBU%3D","expireDateTime":"2024-10-16T06:51:29.7419963Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=NzjUonC3tZl0WPWmLoXhLRnbG4Xsgh6R4x43zr52FXI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4830158Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=VBKDhpoqeuSIKNf16omJMHGPVAg9NeeugagKKMonbK4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:11.4828095Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=%2B4LDDdnx5RedGa7csPDdc4pTi3sPR26z7McR%2FWGiHWQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4830968Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=W3a6E0nqoarzWXG6jyO7eHWFy%2F6ub59xWx5IFfzf%2BFs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4831805Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A11Z&sr=b&sp=r&sig=W2ETQitPigDdEsfg1eoy9AWgQcegTeSz3ya99uBAwMQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:11.4832656Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A11Z&se=2024-11-06T11%3A16%3A11Z&sr=c&sp=rl&sig=6nlbJiR9ddHg814ZiRVCW7GW2Ns2ICojPEXSP5e%2BNX8%3D","expireDateTime":"2024-11-06T11:16:11.4833431Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2020,17 +1895,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4895' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:29 GMT + - Wed, 06 Nov 2024 10:16:11 GMT mise-correlation-id: - - 3ac5f028-2041-4c46-9417-4a8c956198ff + - febbfcd8-df5b-4047-bb8b-8400b2037e14 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055129Z-166cf497cd4z69dq84z53rfxzw000000051g00000000720x + - 20241106T101611Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b7gd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2048,12 +1923,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=BLfHu4PzfDswQaV34Av4z6Kgp%2B0O97YP1QchpZQW3nE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:35.0944576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=ER%2FPvJUAJNYh6lkztOdWHgsFIVDLVVbv8E9ocHqCL5U%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:35.0941621Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=ZR%2B1B1IMUyIPV%2FfAXMKmG3AVrjQ8x1U1uv0AUc3FM%2Bk%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:35.0945562Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=tNyXGK7U37I9KgieE9TDAxVKj7kgtyezfLgrEpldFC0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:35.0946543Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A35Z&sr=b&sp=r&sig=kWu%2BNZRAkDyikbcriVXLuvLdkc2YF7%2Bi94vm2CrakFc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:35.0947443Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A35Z&se=2024-10-16T06%3A51%3A35Z&sr=c&sp=rl&sig=T2HTaZxQtPR%2FsXJYukHDTfxZL%2FvNtj%2BOjCR88NRn6GE%3D","expireDateTime":"2024-10-16T06:51:35.0948393Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=aEGMcag09wbKAVbyzIB%2FtjhAUYt7OO0SHjpeA3us0TQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8572731Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=5zBDDX2NgLO6z%2FxyDUSwLkhFizWmqClOAMw8QlcrOC4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:16.8568722Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=J6zsEPVhRNGAiNyFIcVxsaJN7AZCJ3XTcFGa2EqBZwE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8574325Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=ek8l%2F3NHD8tWqg%2FLgCqnk9YxSSGUe0OYx9mfE0s%2FIfc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8575959Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A16Z&sr=b&sp=r&sig=JRyDzeA78dYJPZsTyt4IZcsvIm7qEuY4iJfbcf3b86M%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:16.8577621Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A16Z&se=2024-11-06T11%3A16%3A16Z&sr=c&sp=rl&sig=9e5gCxwgbTf%2FLj%2FchKnLEpOqmmWIRoGAHkdwdtE29x8%3D","expireDateTime":"2024-11-06T11:16:16.8579282Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2062,17 +1937,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4899' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:35 GMT + - Wed, 06 Nov 2024 10:16:16 GMT mise-correlation-id: - - 4980935f-26fa-426b-ace0-6e69dd197f13 + - 761823b4-7a2a-4090-81e5-073a7c729465 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055134Z-166cf497cd4jqnrcydhdctbvm400000007p000000000hxaw + - 20241106T101616Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b7x6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2090,12 +1965,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A40Z&sr=b&sp=r&sig=CyPY%2BL6Z1S%2BS5XkngbVDCLOuZUfgO4JisLOIdu8j67k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:40.4954605Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A40Z&sr=b&sp=r&sig=NdIme8STVw%2FDo5027RwxZAC%2Bhjgg0w8fPXqqA9z4e88%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:40.4951537Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A40Z&sr=b&sp=r&sig=m6JnrEetqJ7jTo6aTQguYxo0%2BinCsPTe780LsoeQR7o%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:40.4955456Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A40Z&sr=b&sp=r&sig=NeSHO3%2BoSdBFacf%2BBqnuoRJyV7yuF8FkFIgRNZsbCik%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:40.4956427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A40Z&sr=b&sp=r&sig=74qnV3B8XegKCjUdfXZdehISoSxErfOnSO7xndglDpU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:40.4957386Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A40Z&se=2024-10-16T06%3A51%3A40Z&sr=c&sp=rl&sig=anx6UsojoEOPDzUx9u1GeeCFTdyPToI5MOPiMxmlwJs%3D","expireDateTime":"2024-10-16T06:51:40.4958201Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=lvSyhOwMV3XYseOUn2mUy86XrK2mEswWnq5AftlSUBM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2396348Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=rO25oT%2BozLK6MLYIOhq0erLkfNf1QjpiVROtXcElxgc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:22.2393793Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=4TyJptIeJT16jXvx80Ewhz89oPq1Ur9Jl%2B2rW6seTak%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2397023Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=3NNVXIivs7R8GUfo8IXsP2bdQ7GzTJUT6p9GA0lqdfM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2397665Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A22Z&sr=b&sp=r&sig=y8I9nL1%2Fzu7iDLPHXduHefZ8fCBsmGvypiZgTJ04GF0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:22.2398297Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A22Z&se=2024-11-06T11%3A16%3A22Z&sr=c&sp=rl&sig=KKiX%2Bc4lSmic6e8nWxod946fkHRnxJBfb2QNzrM1oJI%3D","expireDateTime":"2024-11-06T11:16:22.2398912Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2104,17 +1979,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:40 GMT + - Wed, 06 Nov 2024 10:16:22 GMT mise-correlation-id: - - fbfca733-7f66-4c0e-9793-5972819b6dea + - 326ad2fc-3991-4357-95f5-dfb05dea2c84 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055140Z-15484bdf4576j5mtr8k4ftgbd400000002s000000000eec4 + - 20241106T101622Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b8ag x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2132,12 +2007,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A45Z&sr=b&sp=r&sig=stfH4IzfnWh0WFda9gKUHhYqUr0B1EQZzCBrTStik98%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:45.9149329Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A45Z&sr=b&sp=r&sig=aHG%2Byxqs73L8NUdUdDMRxpCjHKjKnc6KcwH8y41YaH8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:45.9145902Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A45Z&sr=b&sp=r&sig=CdIF17jJ%2FE1%2BVt4fzS%2F1ey6H%2FyrQ1bhsL84kPyUCqtE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:45.9150673Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A45Z&sr=b&sp=r&sig=abCiQAkU53SL%2FDo%2BptbxiYm2kP9JVz%2FK6siYhq%2Fo2lY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:45.9152125Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A45Z&sr=b&sp=r&sig=U0JbW413uLKJWE7bkMfeOUABNYHLRLliTownUchD%2F84%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:45.9153373Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A45Z&se=2024-10-16T06%3A51%3A45Z&sr=c&sp=rl&sig=uS5SwYgn%2FRzFxKC3WwBAsULq3IWHYF27OlVdKbiKJq0%3D","expireDateTime":"2024-10-16T06:51:45.91545Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=%2FNHLr5fOSyrOn6WZGfCc14H%2B5E3MEp4hOuolMnBmrNg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1575355Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=kWjr3xqN93wbH8rypuVd%2BEf3B%2FxuZwuEyfQ%2BrD5xIGk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:29.1572032Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=lf0fEcIZIIGFb4oaaUT8zlgidUd1vjBKNh7WtqOIcLs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1576627Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=uEAHro5y5tGYH%2FN%2BEriL8ZYu%2FCYOlbOIwigOI5vjkMQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1578128Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A29Z&sr=b&sp=r&sig=6kHVQd7sTfakrOarnimJMLGxBR2ii6lrtnvZFBsszhg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:29.1579638Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A29Z&se=2024-11-06T11%3A16%3A29Z&sr=c&sp=rl&sig=RJVndUqH2iQEaDNoIylISJsJd6mutLbsg32Y3QAZluM%3D","expireDateTime":"2024-11-06T11:16:29.1581775Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2146,17 +2021,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:45 GMT + - Wed, 06 Nov 2024 10:16:30 GMT mise-correlation-id: - - 77227208-b64e-4172-a62f-1713672cbf04 + - 1e5e9b8e-3c79-42a0-ac53-74c4977b1b60 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055145Z-18489d46dccp2df8e3m20gzz8w00000007x00000000049wn + - 20241106T101627Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b8qa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2174,12 +2049,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A51Z&sr=b&sp=r&sig=4VplJgOTZe90zTISkdVXd6rTt%2BNLSfB74n7ZKwBlYks%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:51.316453Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A51Z&sr=b&sp=r&sig=r8zBLJlybM%2FkK0UZQXk6xDiPYRm1ProONfQWfyj8c%2BE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:51.3162137Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A51Z&sr=b&sp=r&sig=p6uI5ilr9cmiFeDczVpY4Xm0Um9mvdJUgH1tz1iq7rs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:51.3165517Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A51Z&sr=b&sp=r&sig=lB7yIsHYXXGZ5aXO4B2nXobzgvYzFxMTQPdIklrEEN4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:51.3166414Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A51Z&sr=b&sp=r&sig=9ixrCgKSLQdZU%2Fu5e3A%2FlIOZpDE%2FHY0WiyDCBnhTLU8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:51.3167305Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A51Z&se=2024-10-16T06%3A51%3A51Z&sr=c&sp=rl&sig=h1%2F8HBnSLqLW2Estg5o162J3N1uNns3rVrVx6CvPzsg%3D","expireDateTime":"2024-10-16T06:51:51.3168248Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=M0iT%2BYSEAf6E%2BI0UDo6TZLjHRofnYqlpBirauoowGDU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5646619Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=Q1r80YsRXDbp2zGMA%2BGy0SviSDZj%2Fd%2FyELJ%2FN1uqLOg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:35.5643189Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=5QHksnmfIX%2B6UvL%2BPYhmOXDFCtrylQtfEsuyP%2F6UMEA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5647544Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=OSdcXb3cdBx9KBSejyayMHiwm4XK0%2Bt4OMRFcuVoFPA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5648421Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A35Z&sr=b&sp=r&sig=ZzJMsovTTC%2FJ41KGmL0UQct6o%2B9h1wvL39cBUg79duQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:35.5649313Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A35Z&se=2024-11-06T11%3A16%3A35Z&sr=c&sp=rl&sig=0b0Px%2BUCBLMScwsF8tvIe5L%2FcKuCISfaZISlO4oBIRM%3D","expireDateTime":"2024-11-06T11:16:35.5650131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2188,17 +2063,17 @@ interactions: connection: - keep-alive content-length: - - '4904' + - '4913' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:51 GMT + - Wed, 06 Nov 2024 10:16:35 GMT mise-correlation-id: - - 11be562d-33a8-4fae-bca0-47845fb342bc + - c6cb7667-75b7-4e54-ba09-63200fa6afc3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055151Z-18489d46dccj85r8e2f8g29m2800000007xg00000000p03y + - 20241106T101635Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b947 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2216,12 +2091,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A56Z&sr=b&sp=r&sig=Iokq%2BwR87eNdAf0XSE55F6ePCHvliutg6HzWG4mCz4A%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:56.6974965Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A56Z&sr=b&sp=r&sig=kyQRIMfJkCtRQKvJOs%2F35PtX%2Bo%2BPE2LVbTr7NxJfc5M%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:51:56.6968242Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A56Z&sr=b&sp=r&sig=37rUkHWZ%2FuKtRXpDS7zcyR%2B6GLivx7DP0hQetOCd2Kw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:56.6978774Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A56Z&sr=b&sp=r&sig=z0wIfi76883hfonHsPPwQqhIIuvMoC35m3ubatBqQU4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:51:56.6980018Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A51%3A56Z&sr=b&sp=r&sig=A4gvK8OTXizSS5pFze4jz%2B0PMzlIvjKW9yr%2FNwMxuuk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:51:56.6983238Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A51%3A56Z&se=2024-10-16T06%3A51%3A56Z&sr=c&sp=rl&sig=WRlKlJpaRuQ%2BoUK3lOCn2%2BWwQ%2F7D4YgYdBh7qDa95mI%3D","expireDateTime":"2024-10-16T06:51:56.69845Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=QpliTOwyWqqaX1BUcN1N9irwlg6G47zAEjlwh3PUy%2FY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.944577Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=i%2BiUV1IYj73LBRwmGg4ePdRZk6YK4%2B7y9banjZ0ArVs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:40.9443608Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=27zxmoAiqTSFaVLLMuPRoGDqcCZSpwgMpBwu1xokXdw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.9446594Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=DilP7ttiI7D46FByX4%2FHPuMkDAg4GRKd28scO8QTzmU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.9447509Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A40Z&sr=b&sp=r&sig=bb1CPPnAQP%2Fj9EnD%2BB9XAcTtZyymnM9UB5821zWPwWs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:40.9448319Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A40Z&se=2024-11-06T11%3A16%3A40Z&sr=c&sp=rl&sig=fNvZ2dWZfmrLfaZsaNdO5PO7BXa0j5fRGMn9Hxu8x9M%3D","expireDateTime":"2024-11-06T11:16:40.944911Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2230,17 +2105,17 @@ interactions: connection: - keep-alive content-length: - - '4911' + - '4895' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:51:56 GMT + - Wed, 06 Nov 2024 10:16:41 GMT mise-correlation-id: - - 2ef59a33-5fe8-4a64-aa43-13d6bae6e604 + - 8b429f17-591e-46d7-abe2-ca6fa2934046 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055156Z-166cf497cd4txcnh6qkkc4ez8n000000082g000000001fz2 + - 20241106T101640Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b9c6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2258,12 +2133,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A02Z&sr=b&sp=r&sig=s8HeVv4qDmlLD5VH6kQ3muNlQJ2gfK6yJSIdAIepdUE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:02.0288241Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A02Z&sr=b&sp=r&sig=ZrOAV2L4k1y3z%2Flm6yfmiz0Sw1pSyht6VraSGKXNohM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:02.0285789Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A02Z&sr=b&sp=r&sig=%2B%2B1qpgJMpjVqXHuAce64m9rj5HT36LWW8DDqojKoQzA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:02.0288895Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A02Z&sr=b&sp=r&sig=SSocFycQOmqcEb%2BNmjKdxYsVe9hAj235vAKNx%2BvdkGg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:02.0289599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A02Z&sr=b&sp=r&sig=Frz3xVsZ0y3dRDPvHrR6xkpa8Rok37VgVaWc2wfNvG0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:02.0290341Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A02Z&se=2024-10-16T06%3A52%3A02Z&sr=c&sp=rl&sig=02Z%2B7dRxOAHUNOrjGwN63TipZTDT2imrh6ItoMfe4IM%3D","expireDateTime":"2024-10-16T06:52:02.0290956Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=NAdCq3Hnp4HBPBhB2%2FSzZkZMebq9uLRec6GPnzrQufY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3206242Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=HXT%2BifCXSGtBLZV233Y0CXZhkgXBDJuxKMD7olpAYAk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:46.3203501Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=lmugK1Lne%2BOzeTJaGg5PUzlYgXz%2BOqAOIfWmx2LlrGE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3206896Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=%2BzMx4IZNeYJwYVSA6Qsgqc1tZgLwSn7tLu%2F5u7PjaVE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3207526Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A46Z&sr=b&sp=r&sig=68W0oP1QDwgqFAVVJnoerrVcpLE8%2FQIgMqeCbSe3SwM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:46.3208141Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A46Z&se=2024-11-06T11%3A16%3A46Z&sr=c&sp=rl&sig=qztdmXGxcpF0pw3qtdgpn%2Fi03K3m53D%2BJty4b8WaSS8%3D","expireDateTime":"2024-11-06T11:16:46.3208739Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2276,13 +2151,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:02 GMT + - Wed, 06 Nov 2024 10:16:46 GMT mise-correlation-id: - - fe4739ef-9c29-44a2-a250-26b2ee438f69 + - 2cd54ba0-371b-4847-ab5e-5bf7ab47cebc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055201Z-17f5d849667w6jv7rkqk450w7c00000001x0000000001g2t + - 20241106T101646Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b9ns x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2300,12 +2175,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A07Z&sr=b&sp=r&sig=WD1pr4XeBJ6NX1eCQSwReB0Z4yrD7MZ6BM4AYmYLXW4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:07.6380745Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A07Z&sr=b&sp=r&sig=Im%2BOMfxeJlJPxy0txzR9pPp71xUR0HHddmazgb8PXCI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:07.6378034Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A07Z&sr=b&sp=r&sig=x9HhoUT355jYi%2BCyAMdV%2BkdfmVVJhbcJRR6ycHF6Vlg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:07.6381651Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A07Z&sr=b&sp=r&sig=vAGljCPA035bqyVrAkKSeQMhgpS922DBsU5%2Bg53OYq0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:07.6382576Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A07Z&sr=b&sp=r&sig=NgHhmhlY3Ikaz1zLVrfn2eojpx3GW8eFNP4VYuygggE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:07.6383487Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A07Z&se=2024-10-16T06%3A52%3A07Z&sr=c&sp=rl&sig=azys3L7VPIkii4XhHmy7yZV6hzf01%2Bs5sFCkNHrf760%3D","expireDateTime":"2024-10-16T06:52:07.6384277Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=B5ljxmwbC8ckt9feLV%2FT8h4eV5uXP8tNvh9lNkeDIlg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7145701Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=0DppoDdjT0eR%2Fxn846hrSotbY6th1iBgUQVAqckgPak%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:51.7142293Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=bjbO4t4gNRhQh0jMNTtSm3tFdyCatOxkjAnrvS26eSQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7147057Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=NkwGMeS0%2Ba4i0wx807zWtxreqQMwWVznnSn1gHMzrko%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7148483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A51Z&sr=b&sp=r&sig=%2BXQeaWIviZXq9rL6NCWQLcdLIiG45BwmkWi0ealnj4c%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:51.7149884Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A51Z&se=2024-11-06T11%3A16%3A51Z&sr=c&sp=rl&sig=f20YvjnBOReIvy09TO9L9DzeVcZVJP4KJUIEIqSeWQg%3D","expireDateTime":"2024-11-06T11:16:51.7151294Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2314,17 +2189,17 @@ interactions: connection: - keep-alive content-length: - - '4901' + - '4893' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:07 GMT + - Wed, 06 Nov 2024 10:16:51 GMT mise-correlation-id: - - e1d0dab8-2d48-4fcc-aa04-430f2ebb99b0 + - 6840af46-d759-42dd-925b-46bc75cd7404 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055207Z-165bfd566cfjh96xqzze3av69w00000008ug000000007zp6 + - 20241106T101651Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000b9x7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2342,12 +2217,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A12Z&sr=b&sp=r&sig=GGlbGQFnQIYem9MLC02ZjY1a3GJUyvp%2Fc8fPYQHvjW4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:12.9982478Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A12Z&sr=b&sp=r&sig=XFL9w93dh7ZgfHgcUkGiEJSjVW9fNh8ZqseXGzXsrhM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:12.997962Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A12Z&sr=b&sp=r&sig=xPY13b6KFr2SuAJ%2BqLnsy3fILHcZmvpEKPQtKmjRK9E%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:12.998347Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A12Z&sr=b&sp=r&sig=ZOMgdNdZvlVA8Fmp6Xv3AUibwcXoquU5U%2BxBEFOgi0o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:12.998438Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A12Z&sr=b&sp=r&sig=ci9BYW0f46XAOjBz4rD7AhAMMbloBHm5mqy4WG79A70%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:12.9985263Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A12Z&se=2024-10-16T06%3A52%3A12Z&sr=c&sp=rl&sig=UDF9aHulK5s1b%2Fy0PYrbZ8lNaLPrOQQZJHYlaBWem5s%3D","expireDateTime":"2024-10-16T06:52:12.9986134Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=KlAjAXgOB0eLmsNkUezASfB1eZ6hq3J00hn9m0hTo6Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0966559Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=7sBPw0yZR%2FUF1DlxtgeOmDtZlHu9ZZHQLiTZbOiW1vc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:16:57.0962006Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=CD62abpZOcI4Jg2p25uU%2BWWx1Y7OP7bpItJCZhWtzEw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0968371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=BRP2dB4eD8CcUMnHu%2FpbwpUOKd%2FpH4ldl1f6BEb5LjU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0969919Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A16%3A57Z&sr=b&sp=r&sig=ey5q37bIZPPM7rST9uh%2BFUhbFSfozgZHNnDxC4Ujjko%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:16:57.0973041Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A16%3A57Z&se=2024-11-06T11%3A16%3A57Z&sr=c&sp=rl&sig=c96JfweujKbzGbpuyavnxGHr8NJzIpU7MEFk%2FVDfcdk%3D","expireDateTime":"2024-11-06T11:16:57.0974319Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2356,17 +2231,17 @@ interactions: connection: - keep-alive content-length: - - '4896' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:12 GMT + - Wed, 06 Nov 2024 10:16:57 GMT mise-correlation-id: - - d7965574-5e8c-4f33-b0b9-94f8ea71cf75 + - 8471e754-abfa-4e4f-bfbf-8c73a9a42846 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055212Z-165bfd566cfdx5qskkr4cf20yg00000007sg000000003715 + - 20241106T101656Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000ba5h x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2384,12 +2259,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A18Z&sr=b&sp=r&sig=k9HOrgdc%2BkunC%2FYFP%2FViMnH49v4A%2BDLqaDt2AGmPDPo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:18.3965465Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A18Z&sr=b&sp=r&sig=GmBM89pSMHq73iY2cjk2i5L6U%2BpHPTBM0R2EK2DwKlw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:18.3960377Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A18Z&sr=b&sp=r&sig=zBhpvf3MKj4Btfpvzq1gzTv0Wt%2Be%2FFGag9ahaCzJyjw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:18.3966939Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A18Z&sr=b&sp=r&sig=MdePj1Y%2BRN04%2FqPbrd80imL3rOlEVdsRvgfU4Jsig2Y%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:18.3968478Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A18Z&sr=b&sp=r&sig=GLjfJWqPVN5vyQmeEZUsU9VP6GR1ATrMXWznkz4EaMA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:18.3970254Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A18Z&se=2024-10-16T06%3A52%3A18Z&sr=c&sp=rl&sig=6KHu6ZQDqkUSaOsn4q4nF771rvBb0Aa0eSLwilXK9ck%3D","expireDateTime":"2024-10-16T06:52:18.3972185Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=nYGph2HdK%2BPjHuSqAX76sMnSPIxtMVBCdPQ8DjtHrPY%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.4795808Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=YIyOSh1eJSxBac1oc%2BwlRrxEX%2FSPf6qV7F8gAUAJVgs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:02.4792778Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=sv1hAiW247AeXnrzxB%2F32R0GXRme3AxUZIkcxi8nXzE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.4797033Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=ouq2cvQoHuj4x6kk1n%2FjlRyXAHKHihw4MkYil54Ss3E%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.479848Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A02Z&sr=b&sp=r&sig=gvNMkAldSWvi3r%2F6RQUL4%2F0wqPlABUph1NSLV%2BO913g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:02.479992Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A02Z&se=2024-11-06T11%3A17%3A02Z&sr=c&sp=rl&sig=brZBRbezE%2FOTpTVztTq4KiacGABPsh%2Bgb8KeocM05xA%3D","expireDateTime":"2024-11-06T11:17:02.4801375Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2398,17 +2273,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4903' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:18 GMT + - Wed, 06 Nov 2024 10:17:02 GMT mise-correlation-id: - - 4fcc6a27-d645-4a2d-a615-9d76e725955f + - c712a3a2-15e4-4513-b1b1-9078bece3f3e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055218Z-18489d46dcck852hghpv4950b000000007zg000000002kzy + - 20241106T101702Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bacu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2426,12 +2301,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A23Z&sr=b&sp=r&sig=q2881et9dEz3nedaR1Ei0GhQD6zYqCfwqpmlgG06ihA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:23.7898674Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A23Z&sr=b&sp=r&sig=xZ%2Bh0gvdhMQXzfX22Z6iHFsz9fXLe4w1Ty1Dbwlo2vU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:23.7894181Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A23Z&sr=b&sp=r&sig=1rvvCNSO9n%2BmaKRycg1UO73wLJcor03jI3fANY6lPfo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:23.7900426Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A23Z&sr=b&sp=r&sig=ZgF77gnd3xyj5y7V94cflBzTW3%2Fhm%2BefXWGLI2%2B4Qpc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:23.7902162Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A23Z&sr=b&sp=r&sig=2ZwXqaQKnjWSvTKccqm3z3uChpG4yvVMJtdAPRgvyGU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:23.7904612Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A23Z&se=2024-10-16T06%3A52%3A23Z&sr=c&sp=rl&sig=5v%2FRdNnhfSaRSHSUqHy%2BuZgel7fVVPvD50BSEa0XVVI%3D","expireDateTime":"2024-10-16T06:52:23.7907202Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=8Y7%2FKctn%2FCOt73YbCPkxTlhd8zH1BB1mzHPcD6lLJRc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8596244Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=hcgpZaviKtIVDIjSiseaBpMjAwlmtcHHvMsyLiN3AYg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:07.8592832Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=2n1AC49Mpv%2Fgi4C%2FQWhtSrrtBjQDibjBrXYVD1jGHjg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8597603Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=tK25KnXo2qeDVdnS0Xm8%2FPngDLhAGcuOVAqjvv4roAc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8599049Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A07Z&sr=b&sp=r&sig=Xq3tTw%2BUtti679bPxUluAurdfFVPQRkQSVI4JJ1eioM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:07.8600502Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A07Z&se=2024-11-06T11%3A17%3A07Z&sr=c&sp=rl&sig=j1r9MvfYlde3n6YAl3mDiEmWB1IzDcoUZ2tCpmz089s%3D","expireDateTime":"2024-11-06T11:17:07.8601872Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2440,17 +2315,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:23 GMT + - Wed, 06 Nov 2024 10:17:07 GMT mise-correlation-id: - - 470f5541-f788-49f4-b3cf-c793d03a495e + - a7956794-9cdc-42bb-b452-adce9edfedb8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055223Z-166cf497cd4jdw4g4y9hv6ku6n00000007wg000000005k82 + - 20241106T101707Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bant x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2468,12 +2343,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A29Z&sr=b&sp=r&sig=97SIfZhGdagAi1Dsh3lPgC%2F7RdflMJcv2wliaX8sY3Q%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:29.102231Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A29Z&sr=b&sp=r&sig=d4Amulqopa99pUDcrQmb66HHnn1dlQVyQHyENjmnkdk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:29.1019362Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A29Z&sr=b&sp=r&sig=CYkqOgfpkyTu7TWchpjzge8gsS2XCMDyPo%2Ba0EOyGAA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:29.102301Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A29Z&sr=b&sp=r&sig=Xc0cPGGyk9p5WKmnNSR01ziYOxgUPF%2B9dmKR9kzvx3c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:29.1023648Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A29Z&sr=b&sp=r&sig=x8%2Bc%2Bsjc%2FhlF2jS39wQp6GQ2jgplamnIEhaGrZa2pJY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:29.1024295Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A29Z&se=2024-10-16T06%3A52%3A29Z&sr=c&sp=rl&sig=mBKpnpXg4XVgHGk%2Bzpin2X4I0TEdG%2BwOaHQomf7izlU%3D","expireDateTime":"2024-10-16T06:52:29.1024914Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=pOJF%2BgP0w9IcAgu9JweYVKYDDMm%2Bbb7H1qR5gO49lDU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2476102Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=wdOKP5HF91lkh0tlUOdL21otVmVKUuQjM%2FoMGY77S4A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:13.2474009Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=1vuY2O6hHJ9HMQEJCdBgpfBvlsZv1QWn0%2BGN7MfJZn0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2476759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=qFdYPYZoubkXVX3C7bixdTwt6cyE%2FXLmWA3g5v6psW0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2477477Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A13Z&sr=b&sp=r&sig=gFw57Ae1c3wdXxsRsLqXpzdyqtcF0nxtlmPiqgPJNz0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:13.2478197Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A13Z&se=2024-11-06T11%3A17%3A13Z&sr=c&sp=rl&sig=2V7%2BCtqyOsmrXRGsdSdBAOaKw3kkQNYmTbmwe5FwJjw%3D","expireDateTime":"2024-11-06T11:17:13.24788Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2482,17 +2357,17 @@ interactions: connection: - keep-alive content-length: - - '4905' + - '4895' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:29 GMT + - Wed, 06 Nov 2024 10:17:13 GMT mise-correlation-id: - - 204f2a47-d090-4688-a640-23ad40c4bac2 + - fd392153-722c-4645-8863-e2433a5023b8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055228Z-165bfd566cfch4x7fkdr4vg1mn00000008ag000000000s8z + - 20241106T101713Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000baz1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2510,12 +2385,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A34Z&sr=b&sp=r&sig=Tki3RoVjw9fZw6FK%2FKsEjKgtF3tZ%2BxBIugTijBdXf6s%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:34.4304874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A34Z&sr=b&sp=r&sig=CzP6I1sByjf1FOGlHYh7eRbiuxeKRNRyMzA1SB0f248%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:34.4302156Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A34Z&sr=b&sp=r&sig=t1sG32bjg4N1oA6qFR3v4HQcbJHFmFePCK9mj%2Ftb5cY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:34.430586Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A34Z&sr=b&sp=r&sig=9idV2Gld0Hhg06WuA7a5stVak4yxy3lGN%2BFUMdbC%2B%2Fc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:34.4306817Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A34Z&sr=b&sp=r&sig=hj5YVSEjRkjtS%2FHWXA7zPzJ8KuEKvN8pWe%2BXGasQwLc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:34.4307767Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A34Z&se=2024-10-16T06%3A52%3A34Z&sr=c&sp=rl&sig=n5GQl5vvXoJSTEJ9GYKBqnb7QchB2QkTlVknbMEc%2FGw%3D","expireDateTime":"2024-10-16T06:52:34.4308704Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=8c5iD%2FPhehsjUa%2F7agSfJFKJhwKAwglRpOTQdKsWHVU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6175153Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=gUucY4oAuL6ei3nnMgw7vxaLi8qUjWdtphfqqmUFL4w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:18.6171292Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=vYbQGajB0pgaKIZOKDyHs%2BKmdW8FrUH7W2tQSrX3qzw%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6176167Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=xFKVjIm%2Fw8ce1%2B7ySNcWBuywGKOgNyCYAwea5mfZmUY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6177101Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A18Z&sr=b&sp=r&sig=Mty9lhaxw%2FVHspXFbjQ0YI7jXHTrIhqAV1%2FaldbSce0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:18.6178021Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A18Z&se=2024-11-06T11%3A17%3A18Z&sr=c&sp=rl&sig=hL2e%2FAUyTeUa8S4iAMWoDL4tw4ItM5jfI8nzVIZheLw%3D","expireDateTime":"2024-11-06T11:17:18.6178908Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2524,17 +2399,17 @@ interactions: connection: - keep-alive content-length: - - '4908' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:34 GMT + - Wed, 06 Nov 2024 10:17:18 GMT mise-correlation-id: - - cb450bae-1eaf-4a4d-a195-415c9821f20b + - e4b76b23-30a7-4d0b-a10a-1ca03b1c70dc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055234Z-165bfd566cfd2dxssq2e8pp1zc000000092000000000f3y7 + - 20241106T101718Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bb5w x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2552,12 +2427,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A39Z&sr=b&sp=r&sig=45%2F8CFqXld5OC%2BvxK6DkJUfhDgDr8YvIg7l7TAIXFOw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:39.781532Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A39Z&sr=b&sp=r&sig=0ZUW%2B5pdidk6e5LfZz4AFDUruKAcuKDNDuKixTX7PrA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:39.7809932Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A39Z&sr=b&sp=r&sig=ZU0LOSXHkA3EMyxo8jcj4EiYeQBGxdcDyNpYsCO0ve0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:39.7816969Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A39Z&sr=b&sp=r&sig=VdsUUHa%2FjpxBYJHJZzQ2JksHfxJ4OSdoOv1nTutrbqI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:39.7818001Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A39Z&sr=b&sp=r&sig=v3L8jvV1yoWTv%2FlrBpS9Dd0WQuEQqmSq%2F1xeEyTj9bI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:39.7818979Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A39Z&se=2024-10-16T06%3A52%3A39Z&sr=c&sp=rl&sig=NCkhPyX6nQ%2F3QCbSuUumLVR0EuA1DIpWkX2X%2FZKIEpk%3D","expireDateTime":"2024-10-16T06:52:39.7819912Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=K9qyofL3OSthDuYKCEvxYDD22KFoMVJ5%2FX8g376xbIM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0227967Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=%2FCa6EmKQXsMlkW2h8%2FXXerJU0kLcHyOV37jXnwflTTI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:24.0223517Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=jXk4j0ouFwJWuSlUyTgeACVXYnb8NZnKb13962y6sjo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0229817Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=xATbkJw879cuLfFTs1%2FsTjz1kn%2F9HxBO%2BJTtUamwuWo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0231801Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A24Z&sr=b&sp=r&sig=xOKJBURF0PCzZ5Wh0%2Bjk6mHpzbB1n68TY6cnV43qgIA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:24.0233596Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A24Z&se=2024-11-06T11%3A17%3A24Z&sr=c&sp=rl&sig=tfgw7xKwg4X5OPp6IyMIWlo6AjMtANNhQ7pKK0MiT%2BQ%3D","expireDateTime":"2024-11-06T11:17:24.0235246Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2566,17 +2441,17 @@ interactions: connection: - keep-alive content-length: - - '4906' + - '4901' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:39 GMT + - Wed, 06 Nov 2024 10:17:24 GMT mise-correlation-id: - - 297785b6-870b-4ecf-90b3-5bd933ad8437 + - 0f418f4b-a608-41da-bdd3-118dce6f09ac strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055239Z-166cf497cd4txcnh6qkkc4ez8n0000000830000000000tec + - 20241106T101723Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bbev x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2594,12 +2469,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A45Z&sr=b&sp=r&sig=Om2wwzg4WKMfgczKqUjlgLe67ynQWSXHNKSB8Q6Gm6k%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:45.1705074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A45Z&sr=b&sp=r&sig=U9Ad9dH1cM0llB0Ug3YG5mtjbektvPphC12%2Fvi7qooU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:45.1701356Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A45Z&sr=b&sp=r&sig=rvYUbL7bIyRv%2BSj6IgHxlCC7ooPthh8bfASNTMztSig%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:45.1706406Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A45Z&sr=b&sp=r&sig=2jdCmG7GZNo%2FXAWuA%2BAH4QPFIPy20kEbBdUGjvNBNc0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:45.1707884Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A45Z&sr=b&sp=r&sig=h%2F6Z1n0%2Bwo2PZJ9ETzR%2FRePP469YqgM7fXJ8K%2F2CYm8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:45.1709086Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A45Z&se=2024-10-16T06%3A52%3A45Z&sr=c&sp=rl&sig=xMru3RkGap%2BUnuTVcQ0orSHlSOFfGgnVPDRaUFg0YUA%3D","expireDateTime":"2024-10-16T06:52:45.1710544Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-10-16T05:50:04.014Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:50:58.664Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=O0q%2FCR0nGx3ap0dRlAG65g0gl88AmW83Y%2B%2FISyed3dU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5040488Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=Zz2ifFDaN0GQwBcs5Pixs3s%2Bdku8LTrSeJ3paX04wt4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:29.5035586Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=7PfjEo8qONolJrPXsmqb4bHLtHPqewXK9HZzXK2irUc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5041635Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=1Gojyhjnwvctd9OrzE3ClxrTDufnzFW7MjIqy8fiRrs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5042875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A29Z&sr=b&sp=r&sig=TAhnbSNuBYhq3D4ELAszFiDHSiafQW4qVRx4d8hVGxs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:29.5044053Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A29Z&se=2024-11-06T11%3A17%3A29Z&sr=c&sp=rl&sig=d2HJbDBZMbRkq9F%2FwBpJV%2Bl2Fyjn6aSJdHhbcOhOz0E%3D","expireDateTime":"2024-11-06T11:17:29.5045218Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"EXECUTING","startDateTime":"2024-11-06T10:14:55.437Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:15:44.878Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2608,17 +2483,17 @@ interactions: connection: - keep-alive content-length: - - '4909' + - '4897' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:45 GMT + - Wed, 06 Nov 2024 10:17:29 GMT mise-correlation-id: - - 88bbe317-543b-467d-96f6-c4934e065726 + - 2b169080-34f8-4269-b369-b01ce6207fab strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055244Z-18489d46dcc2nx5gu4q8t6hd2g00000007w00000000046ws + - 20241106T101729Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bbrp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2636,13 +2511,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A50Z&sr=b&sp=r&sig=zii5evWGY6WaMwLfgaun5u8tccVIDlfjQ9hJVT8BBlw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:50.5362599Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A50Z&sr=b&sp=r&sig=Tfi14o4Yazi%2FMP4V%2FgvZZ3E8O5hfo4nLeHX01Gaftj8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:50.5358354Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A50Z&sr=b&sp=r&sig=nUBSKuK4cOmuwrQoxMRxxThsEJF24HUw%2F4aAJ199DDc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:50.5364208Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A50Z&sr=b&sp=r&sig=%2FWWDXzPa3zRwtQ7nx%2Fk3uuQ7leiRspDJYIk4RH%2Fh6L0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:50.536643Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A50Z&sr=b&sp=r&sig=uxiahsJkg%2F3b%2BFs%2BIxzjo9L3p6lLjzptph33Hhxmt8U%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:50.5368212Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A50Z&se=2024-10-16T06%3A52%3A50Z&sr=c&sp=rl&sig=zNqwBFqF9y59aO0RY7jyKp4bDsqEu4Th115Is%2BweyEY%3D","expireDateTime":"2024-10-16T06:52:50.5370024Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:52:50.498Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing + error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=9LK9kmcnsMX83mTbJmN77xk60GrRQ%2Btq2xSg9TVQ39M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8796986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=lCSWRW6wzminM6I6FMC3UAaHeG7MnHJPxR7B%2BXxGVeg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:34.8793508Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=k5EjpU9R62X8x2pvstzN%2BLIh3a4IZt0pB4sIyWaEMb0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8798405Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=QBeY4DjqxzV26rEczV75MXGAJcjMxLMgoCjHGpWHJyk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8800364Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A34Z&sr=b&sp=r&sig=21lwLMfeJKG4XQ5q38iPn3uNqVhtTW4%2BH4jmA4IFIXU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:34.8802105Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A34Z&se=2024-11-06T11%3A17%3A34Z&sr=c&sp=rl&sig=wuLOBKhpzm5AmQMR5T98VUWI0J6s8Yp7Z8erFYgH1Rg%3D","expireDateTime":"2024-11-06T11:17:34.8803821Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:17:34.441Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2651,17 +2526,17 @@ interactions: connection: - keep-alive content-length: - - '5038' + - '5020' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:50 GMT + - Wed, 06 Nov 2024 10:17:34 GMT mise-correlation-id: - - 73b1f87f-3766-441d-9665-e194b6393138 + - 275245b3-3d1e-4a4f-ba3f-5b34849429ca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055250Z-18489d46dcck852hghpv4950b0000000080g000000000wv7 + - 20241106T101734Z-er1b6dc89fdnxq76hC1SG1mf80000000056g00000000bbz6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2679,23 +2554,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:50 GMT + - Wed, 06 Nov 2024 10:17:37 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -2711,7 +2586,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 387ECFC9A3D04E20A65199385C7A440A Ref B: CO6AA3150217047 Ref C: 2024-10-16T05:52:50Z' + - 'Ref A: 4D75E79EB6E640D3AF3BD8390B17CD9A Ref B: MAA201060515037 Ref C: 2024-11-06T10:17:37Z' status: code: 200 message: OK @@ -2725,13 +2600,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=update-test-case + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs?api-version=2024-05-01-preview&testId=update-test-case response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"Processing - error logs, refresh to check actionable errors."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A51Z&sr=b&sp=r&sig=fCubfX9HoyrkmXnMcemAS6%2FzdARE1v6HV9T7SqFme8U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:51.6477267Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A51Z&sr=b&sp=r&sig=nHByb09IpIJvzU2BPSXckBW3FT3XoJ8eB3ixoBTTf10%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:52:51.646659Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A51Z&sr=b&sp=r&sig=C0tgztT3GCY3UwF70H%2BstmNCxCtMINxCMMPnQXunrvI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:51.6480061Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A51Z&sr=b&sp=r&sig=b%2BJBM%2BoIqIvKjrB8wny2EYdvJhsVXYeroq%2FRTCZrHkU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:52:51.6484189Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A52%3A51Z&sr=b&sp=r&sig=eP2xVz6GKAJSR6WwnraxQ%2B%2FafwfJZMFvX40y5l%2BIiqI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:52:51.6486956Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A52%3A51Z&se=2024-10-16T06%3A52%3A51Z&sr=c&sp=rl&sig=imRKcmFW8p%2F5x12bhEp1wPElu8l6WJ7DFnnJaoUFicA%3D","expireDateTime":"2024-10-16T06:52:51.648973Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:52:51.21Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=wPMkA2fwvEOsc6CWkcX4%2BX7zkU9QLtUYRtivpFjYryE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3810991Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=KFzIW%2FJwwCQxTNzpeUMq75O6kBmb3thgCDXRYgj37Uk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:17:42.3807847Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=EL3jTkrskdglifbxtnSQTmCmwZL7kyLnyi57CN1TFwo%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.381204Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=Cs%2BJpK6NFp1B0vjgARxKthi8TArY9JhDdoQJ7rYUtNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3812966Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=GlalScC1OlI8OjdZjrjnI0A%2FqOa5%2B7S5dD%2Ffgn5pHh4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3813941Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=0DR2Zrct%2BJsqtRjbnEEuPbl%2BndUxuJ4MYRthEWHvcls%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3814893Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A17%3A42Z&sr=b&sp=r&sig=VH%2FslIfH%2B2Bx%2B4ENhhFfKrGluKtRcMf9ksbPd8%2Fb6rg%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:17:42.3815874Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A17%3A42Z&se=2024-11-06T11%3A17%3A42Z&sr=c&sp=rl&sig=q8IxnpQXVqrU9gmwB0WxeYnOle92xMhUi3zWGLIzJdk%3D","expireDateTime":"2024-11-06T11:17:42.3816752Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:17:40.072Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -2740,17 +2616,17 @@ interactions: connection: - keep-alive content-length: - - '5046' + - '6257' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:52:51 GMT + - Wed, 06 Nov 2024 10:17:42 GMT mise-correlation-id: - - ea031146-725c-443c-8fa6-44308fcbba0e + - 236776e4-43bb-461b-b741-6edcc23266f7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055251Z-15484bdf457kqcw7c4rchthr0n00000002pg000000008e87 + - 20241106T101741Z-18557d4f7b8grzcmhC1SGEncy0000000053000000000g9qh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2768,23 +2644,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:12 GMT + - Wed, 06 Nov 2024 10:18:05 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -2800,7 +2676,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 484B1AA7867844D098F22DDC246E9927 Ref B: CO6AA3150220047 Ref C: 2024-10-16T05:53:12Z' + - 'Ref A: 289D3E99BB814DA09F0A11330E37BD8D Ref B: MAA201060514031 Ref C: 2024-11-06T10:18:04Z' status: code: 200 message: OK @@ -2814,14 +2690,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=2RTN37XolTqJBFh0kRjSuqKutlf9JwfwcdSag8XgfbQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.1515766Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=iT3UuX1TwgvpdHAP7m59WysqZpra8niwV1UyXgQZxtA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:13.1512935Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=EPfozjhox83zOKk63j%2BWrOd%2B3v2Ocer8ZcOFgpqKuhQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.1516688Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=49bK8o0jRWlK0KebwJ4w8W6t9CSp%2BOXejd1iJm6oxW4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.1517699Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=ESTx72gsXwZzsGLfo%2B2m%2BcQEc4CJORQvfLA9U7cQWtU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.1518601Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=aD6oWtltynnoaSSrUo9jk3rxx7RHZBlSknjCgago%2Bq4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.1519514Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=d3Zmde40ICEiE3W2fYaJ5T7do%2FIvP5Ycv1JIHK0p4N8%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.1520404Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A13Z&se=2024-10-16T06%3A53%3A13Z&sr=c&sp=rl&sig=x6E8x2AlAAeQfValicac9xIQ6rgV6t3tbkFSYLFq9io%3D","expireDateTime":"2024-10-16T06:53:13.1521365Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:52:59.453Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=TDtHNRaxxCz9OzlrQN6unBSvkNUyIkaBdcF0ryrYJQA%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.450986Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=6OqjFpkK9s7OfIXZSY0WCdKkzmsdlj3m4jJpUmAjz28%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:08.4505087Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=acY2eaf8hq%2FxdA80V%2B6HfNi%2BM61M45mQP6dMWLFFm%2B8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4511879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=%2BYZNFFV5buH6mP34R4JtBlNrdXXZAaPNKoCjJSDIt%2B8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4513958Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=Nu7nydaHxodt9i3u6DwLDdj7MApwcKTZe0XaMPbVEqc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4515887Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=N54%2FQgIMKRh1hwpuQg4G055LA8dPHznc9yXC6lfAsJ4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4518094Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A08Z&sr=b&sp=r&sig=vHH3f15X%2FxtDWqhBRO%2FGb7L8oSQ1LtTBd%2F%2FIlOwtyjI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:08.4520052Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A56Z&ske=2024-11-06T17%3A13%3A56Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A08Z&se=2024-11-06T11%3A18%3A08Z&sr=c&sp=rl&sig=GTtJpINVe1iO8O3Zbl54ApxxhV57dLNEg%2BDD5YTz3Jg%3D","expireDateTime":"2024-11-06T11:18:08.4522129Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"update-test-run-case","testId":"update-test-case","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:17:40.072Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2830,17 +2706,17 @@ interactions: connection: - keep-alive content-length: - - '6243' + - '6245' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:13 GMT + - Wed, 06 Nov 2024 10:18:08 GMT mise-correlation-id: - - ea51abad-1157-404d-8f28-8b5fdaa516b9 + - 6b8f7701-7f70-4e2a-9f24-a8c5e18e7e60 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055312Z-15484bdf457fxddfyvtw44f6s0000000037g000000001bn2 + - 20241106T101807Z-er1b6dc89fddt9w4hC1SG16v30000000051g00000000f969 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2863,15 +2739,15 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=dTKlQfx1BCxQxdxuIDLnyr5lw%2FHTAB7GC%2BLcZ9Codwo%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.6621451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=qxIDeZ7z77rs%2B2eM1XrCoCve8cTz3WIBpTsXo%2B8Lsz8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:13.6618195Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=vxKzKbADIRqOpfHlyNSoIEbE3vbrkaXp5dPJP1lWg30%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.6622481Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=e8qr7oqBz1WzVatQ3araDx%2F9B670gr815onqZyneark%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.6623735Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=Ng1O83M2jfmO0mqgcFBc1vXu%2FvEv2QRsvXOus%2ByUHYY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.6624816Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=fEpZzmYCcTkba4bCvNCzlk8vj1F7%2B0Y0fvGOmE90kQs%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.6625804Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A13Z&sr=b&sp=r&sig=Hzfr5DQgHcsfob3O2wGo06FFPosY6lIkJvGLNUL54qI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:13.662671Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A13Z&se=2024-10-16T06%3A53%3A13Z&sr=c&sp=rl&sig=rtbry%2BzfVXERgznfRLnZs%2B%2B86QLSs4eFW0lDN5vO7aY%3D","expireDateTime":"2024-10-16T06:53:13.662762Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:13.652Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=I6c0pyGQm6%2Fp2ZK3SV5KdL%2FNVbson%2BjeYGrjhzNl%2FJw%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0919384Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=FdMb%2B79B2mhdQ2H5%2BugWgnDvIOQYTOYjj%2Bic%2ByeI%2Bo0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:09.0914632Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=8f8aOqMybo1yazWU%2Bavp7skNF11vxdVHBnDmsuOj%2FgE%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0921776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=EmsgldyxkWXrskRUwyHYtt82MdI2QPEwksKmnet43uA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.09229Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=jYIIpOvlWHL0INp4xJ9Y9%2FBzMF%2BxZetuE2hIEgnRReo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0926034Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=pljCswYcKjxJOkQLbp6fT%2FrEAPR5bfWXZiNQH1xsEaQ%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.0926934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=VEUOQmDxkPBmtKmgnTld35hS1ihhcKeEym5EDS%2BjFaw%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.092818Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A09Z&se=2024-11-06T11%3A18%3A09Z&sr=c&sp=rl&sig=%2Fk8Rx3IRdxi8Ceqvp%2BfqYdTNqD3RtlbUPpMn%2Fp1ApgM%3D","expireDateTime":"2024-11-06T11:18:09.0929131Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2880,17 +2756,17 @@ interactions: connection: - keep-alive content-length: - - '6301' + - '6307' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:13 GMT + - Wed, 06 Nov 2024 10:18:09 GMT mise-correlation-id: - - 71de6bf4-28d3-45a9-968d-684f6d5fce03 + - 455d1c4a-f40e-44c1-8d73-8e34d8e2a877 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055313Z-166cf497cd4r6hmp97992txd7w00000007yg00000000a8t9 + - 20241106T101808Z-er1b6dc89fddt9w4hC1SG16v30000000051g00000000f97p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2908,15 +2784,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A14Z&sr=b&sp=r&sig=WAx%2FB1iZUt%2BKXO4pgbrE3i5HdiGmKcWLN14EXob7S7M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:14.0766947Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A14Z&sr=b&sp=r&sig=M8UJ75%2FoCCp6yKl8Ovc3fyOErLqjh51HTElOBzoGi7s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:14.0764004Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A14Z&sr=b&sp=r&sig=CsO5%2BO3CNppDME5aZAYzF8XCDQlIF%2BZaZnYLjkvripI%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:14.0767934Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A14Z&sr=b&sp=r&sig=67v%2Fl%2BG4R%2F7TXU%2B62x1Lj%2BBVEdvo%2FH5FSaIWt4MJNsE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:14.0768826Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A14Z&sr=b&sp=r&sig=V3hqNAWARaTSPUkorj4kkSKD1TAFfrti3kv3GnqhonU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:14.0769706Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A14Z&sr=b&sp=r&sig=MrV2bmWFTVQVxay0nQ0CgvJf09IelsqdY47Tymxx13k%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:14.0770611Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A14Z&sr=b&sp=r&sig=isKTon%2FwKw2GqpyGhR3Hva6em6N4IRkRAQTl1L6sGc0%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:14.0771509Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A14Z&se=2024-10-16T06%3A53%3A14Z&sr=c&sp=rl&sig=L3npPeSlhWB4D85S47v7CIyhQRhcIW3PTqEN7fh2nyo%3D","expireDateTime":"2024-10-16T06:53:14.0772377Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:13.652Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=UBEZjEFSJlBk5G5iw9SdV7%2FYJEbwuwd%2FdEOBTc2U4e4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5672957Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=wFma0sUSCgtKJZ4pGYJ0xLMkuhwtkMYrYkYviRoJ1Ho%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:09.5670363Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=GuY%2FgF3Jguom2%2FM1oeAnhcR0m3RMu5lNEYGGuGyCfgc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5673877Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=gt2PbLmECJxODdgFQ8w24WFZuVROtiX3AITwywBsI5s%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5674797Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=Q2iIL%2B2N3cHlIxMAIwuVYic4qKcwhBaieO%2Bw%2BXVuAyU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5675675Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=siGI91fHOFjAQAwsAHWcp874FFtwCjS0Ww0EfAqgPXw%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.5676589Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A09Z&sr=b&sp=r&sig=44dG9PkJh72yBUbRBoohwH2vz%2B1xwDMNkWNt0Q520wY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:09.567756Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A55Z&ske=2024-11-07T19%3A14%3A55Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A09Z&se=2024-11-06T11%3A18%3A09Z&sr=c&sp=rl&sig=H9E%2B5RiWmTOIJYUb08mt6UdEn%2FSbP%2BS9%2FoY6G4XWQFk%3D","expireDateTime":"2024-11-06T11:18:09.5678524Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -2925,17 +2801,17 @@ interactions: connection: - keep-alive content-length: - - '6305' + - '6297' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:14 GMT + - Wed, 06 Nov 2024 10:18:09 GMT mise-correlation-id: - - 0003dd61-f369-420d-be09-fadaf691bb35 + - d8a2a367-bcc4-431a-8bf0-ad453e3992fb strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055313Z-15484bdf457fxddfyvtw44f6s0000000031g00000000hek8 + - 20241106T101809Z-er1b6dc89fddt9w4hC1SG16v30000000051g00000000f98k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -2953,23 +2829,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:14 GMT + - Wed, 06 Nov 2024 10:18:11 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -2985,7 +2861,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2A82A866B9364E798AC2830D0628535F Ref B: CO6AA3150219027 Ref C: 2024-10-16T05:53:14Z' + - 'Ref A: D6EB0A030B3B4BCAA09C819B9C04C85E Ref B: MAA201060515019 Ref C: 2024-11-06T10:18:11Z' status: code: 200 message: OK @@ -2999,15 +2875,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A15Z&sr=b&sp=r&sig=dCj6qpsHcsWLnYACW6QsyZdI0F7cXTqDGeWYvRRsvfg%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:15.0077737Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A15Z&sr=b&sp=r&sig=RPnQ5k69vjleXfRkQfvCb3UPiH3gzcxvIJaCCxbPXko%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:15.0074109Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A15Z&sr=b&sp=r&sig=0X2xsuXITf7WFgeV81mZ5WIrJ0KYUIKTWyEaBCWQRkA%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:15.0078656Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A15Z&sr=b&sp=r&sig=XSd1Fzl5f9LlA8PQe7olTbzpzGvl%2B6rXMvjr7vkiX8o%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:15.0079563Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A15Z&sr=b&sp=r&sig=BsIVV%2FVZa1WL6a1vZ4LC04SSt8X184G8VQUXvMsnIwk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:15.0080512Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A15Z&sr=b&sp=r&sig=Twsqc3wJ2dI8N2wUzT%2BfraEvThNGYwMrD4PDJwtAJyw%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:15.00814Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A15Z&sr=b&sp=r&sig=51a6G1mFkClaPSyuzt5vs8uTj1d%2BI6iSJmMSXY9ZbOk%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:15.0082362Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A15Z&se=2024-10-16T06%3A53%3A15Z&sr=c&sp=rl&sig=40Rff5TOL0jfa9v8xRxetMFkxxgclDYCdV63BMAtLSw%3D","expireDateTime":"2024-10-16T06:53:15.0083241Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:13.652Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=7CSx19XslYKaQiOTe5vKk541oH8JLc6lTR7QpydPqOM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6374923Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=AhoE3FXlsJ0wXVQ2PsYrzBT6AABw3p1Qowxr2Yaz33c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:14.6371112Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=MXodLmZnTPOR4mFDwtrtgbsM%2F9WxzwLwIxiPpDP%2BJFQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6376284Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=t9vBXyJQx5r8GLRiF4eUmCbrjm7RmRM2t00hocLW0SE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6377588Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=qCmq0NBASJl%2FQlaBcMZBMJ7K0z8WqarS9Q%2FQPEsan04%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6378907Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=z3T%2FElHbA6pKQbPAE3%2B0VdyQVM3qztEsUU74J%2BZPh%2F8%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6380193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A14Z&sr=b&sp=r&sig=Tekz%2FnsGLXeeCiHKrnqEX9XUB58y3w3LmSvN%2F5JveRA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:14.6381713Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A14Z&se=2024-11-06T11%3A18%3A14Z&sr=c&sp=rl&sig=RGPmeD0TAXEfctLv0ZJcZnRTsS1f69Hn5x8N8KCeB3E%3D","expireDateTime":"2024-11-06T11:18:14.6383036Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3016,17 +2892,17 @@ interactions: connection: - keep-alive content-length: - - '6287' + - '6294' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:15 GMT + - Wed, 06 Nov 2024 10:18:14 GMT mise-correlation-id: - - 626c124f-fe3e-4e2d-afe6-b2767b8e3e72 + - 12d642e7-19e7-47d7-9850-f47ef76d0dd6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055314Z-18489d46dcck852hghpv4950b000000007x0000000009hyx + - 20241106T101814Z-er1b6dc89fdqghlthC1SG17drw00000004xg00000000w6b8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3044,23 +2920,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:15 GMT + - Wed, 06 Nov 2024 10:18:17 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -3076,7 +2952,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E007AF28BC95419C91017A8A285BC3E0 Ref B: CO6AA3150219027 Ref C: 2024-10-16T05:53:15Z' + - 'Ref A: 0BAA22AF07564C19BDFF418D8DB58CAF Ref B: MAA201060514033 Ref C: 2024-11-06T10:18:16Z' status: code: 200 message: OK @@ -3090,15 +2966,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=i%2BjblPaMAU%2F8uOY1EBpDu%2FVq%2F114Mpscq4CLfXLwaFI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.0409849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=Xiy0QnKO01XWuSd63D8LYZXwcc8GxR8d%2Blzt%2FNRiRBo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:16.0405817Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=4dgFTtPD2uImrdLpaxRJ1BUblAYc9AXBDjsujNtL6N8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.0411185Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=scezjpmE30d0z8WdB8Lvg7Kt%2Bonx31NLOVxB9cqZScE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.0412471Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=TzDOynH1LhbrhHyzAoRZKcikKvZYfZfKHkBrG6jMDSA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.0413798Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=32dGYHre77yt3Jx%2BUnjYetfYn59AUiyvpILkc7Q2FRo%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.0415074Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=CndDQ4WQOsQ8KgDW4fDVss9HjbJHntkpEG83dceG6HU%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.0416369Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A44Z&ske=2024-10-16T12%3A48%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A16Z&se=2024-10-16T06%3A53%3A16Z&sr=c&sp=rl&sig=07Y7hwHohGkjUABi3Xlc%2B18zhxXsZOODyzeVnrDH1EQ%3D","expireDateTime":"2024-10-16T06:53:16.0417655Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:13.652Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=TRAfx2LRhUDq5e7gNoHUH0sIRXdLepwCJL2islldL5M%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3761051Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=25lFnjmtZW5FSyCYd%2FW9%2BJuBVmfrv5G7PstYbw4pn3k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:20.375716Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=zJnghGTE4%2BH%2FGauWqVBLpJFOlCBtaWej%2BXoGXytYvRs%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3762572Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=XS9243v%2BoBbLDXV%2BKePcmnqM7Uxa1saWhij0qLXNDJ4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3763944Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=1%2B1scX%2FluEIlCTKiTvRQS6qKBF8Ta6jCMZW8Tjaq4cs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3765391Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=fk%2FxnuVF7NfLDI9yIIhDYFgT%2FCJU5GMDmoZDXVcEjgU%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3766753Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=CdWkRsI7iOtQgrdcWw9Cw%2FbqPTSq4adPNHDf61DK%2FeA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.3768137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-07T02%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A20Z&se=2024-11-06T11%3A18%3A20Z&sr=c&sp=rl&sig=8uz2BKSNWybi2FtjedgWrjw7hX5Z%2BZmPpN2%2BMjI3emU%3D","expireDateTime":"2024-11-06T11:18:20.3769464Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated1","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:09.081Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3107,17 +2983,17 @@ interactions: connection: - keep-alive content-length: - - '6299' + - '6303' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:16 GMT + - Wed, 06 Nov 2024 10:18:20 GMT mise-correlation-id: - - 810a23dc-7407-4957-9b0d-4c390ccdbb5e + - 97b0e677-fd48-403a-a422-79e0adf8f0f8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055315Z-166cf497cd4jdw4g4y9hv6ku6n00000007v00000000083m4 + - 20241106T101819Z-18557d4f7b8hswrbhC1SGEz31400000005fg000000006pe8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3139,15 +3015,15 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=ZQxq0NuXchW1D76inHDq1ROE%2FpPUSTIuBXlb7clJtl0%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.6016962Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=s4VtdSzmHdhzIWptT9IhHCWM%2FUYn8FH0uv7koPrhwW4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:16.6011037Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=SUsdRVL%2FkXjz6219whoOXpTTUZo3ebAaA4L%2B%2FJqLSmU%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.6019139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=T7wyx2yR1Q2THSqlfsFxAXA856CRNFC1CKAstCeSEc4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.6021424Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=FnAoG91WgJKaRLLbsuM%2FSxg9h8wvd2ioFv3hnD1BNFc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.6023903Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=4w3nGVYU8dYIN0jkOnBEQGZdD1eOPyUc4Zkcgw6r1rc%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.6026008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=wJ4zYRtQF0xTJ6FYEWg7Ni70zQEKq85xPZkmq%2BUa2QA%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.6028574Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A48%3A45Z&ske=2024-10-16T21%3A48%3A45Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A16Z&se=2024-10-16T06%3A53%3A16Z&sr=c&sp=rl&sig=DAZbzwCLaWDPt3H2C35UKQK3YVZeOUeOokZeIziGSgg%3D","expireDateTime":"2024-10-16T06:53:16.6031229Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:16.591Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=VUv29LU4o1JWGMiYR3tAI%2F%2FMYbZ0fKwdWmo3OAoT0EQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9490802Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=pRQkoWMDSo8uZ%2Fs1aXRE%2FHb2YrtWfSfBgq7%2B0cYCdNk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:20.9485424Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=VRJP%2BJ6jhYTVN6a51xhf823Bnk5HVwP%2B9dIazNK96yQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9493946Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=5%2BjYPT0MYc2%2FA1WKq5EqJtpeR1tNA8uZrQRCdJk0MIo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.949726Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=YY%2BvIuTHOsOqnpXyEOpT1UUMX0lOaPFk%2BCM5DXna9ek%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9500877Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=%2FS%2BK%2BPTls9jCwxthZXyCMDDkBEApFZyXALl9i4%2Bb1n0%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9503849Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A20Z&sr=b&sp=r&sig=hzZN1rXdEVIAgyIMu4O1nUDDeGRQIKHdkB4Lofpd5Rg%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:20.9506915Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A36Z&ske=2024-11-07T00%3A14%3A36Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A20Z&se=2024-11-06T11%3A18%3A20Z&sr=c&sp=rl&sig=roqC9KiUr%2BOdNfQOnK0GSWKB4FQ9W4KMOdW8hk6QhDw%3D","expireDateTime":"2024-11-06T11:18:20.9509866Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3156,17 +3032,17 @@ interactions: connection: - keep-alive content-length: - - '6295' + - '6305' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:16 GMT + - Wed, 06 Nov 2024 10:18:21 GMT mise-correlation-id: - - ee01c89b-527f-4787-95b2-cfba166cbe36 + - 114a4250-8374-4fc8-9cba-9d89ce299f1e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055316Z-166cf497cd4r6hmp97992txd7w00000007wg00000000dtdu + - 20241106T101820Z-18557d4f7b8hswrbhC1SGEz31400000005fg000000006pgq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3184,15 +3060,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=PY%2B3L4qn%2B%2FfOmulfrW19dkexMMS6juW79DzfcDiIzTE%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.9828598Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=wFQXClxNJj5P4ucUExqpbasoUeyLGSZPcnNpqImbE0o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:16.9826082Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=s5aDAILWNA%2FNK1nrXT865P4of2McBkIP%2BbgYFoS0hTY%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.9829462Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=G3AecxODqGe26gkTc%2F0t5%2Bj3D8g%2Baq%2B0uHXzuK5GRQU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.9830303Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=z2pqVK5KwW6Y0b39Ei0bAKdQCeLgECB%2BJVMc9jPsn9A%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.9831115Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=8YqM0zmS9ZYirLZQm4JpPPOPVdub0qLHA5jkam9jWHg%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.9831949Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A16Z&sr=b&sp=r&sig=BY6CiKrO0%2B%2F12vmG9m3rX79ebI8Lrgl5vl663pOdMlE%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:16.9832759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A16Z&se=2024-10-16T06%3A53%3A16Z&sr=c&sp=rl&sig=xBVqmyWgRX97c6Q3RaqhFj62sXaQ9xC4cHOiISMYQS8%3D","expireDateTime":"2024-10-16T06:53:16.9833569Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:16.591Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=ILb45L75XZCI4AYbX0rO01xc3X8A%2Fj2RgQbnnQ2wbRU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4494053Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=zfWFOXuttkBBrEFeq3k6IhrzFD9hVlatxWTRN9JceZw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:21.4484949Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=zMK4QmS%2BDiMpNnFLuRFLfd73JA9T8dzUQmdnL%2F7HS50%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4498154Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=F81r%2FuXtVVgG2Xe%2FAWwtfwodgm5ka1ycyGxro6L0XrA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.450058Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=3HZmF%2BgJRFXlSqW61FlzEvQOaLEWptEn6WLr%2FICSYhY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4503088Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=kVOUTQ6U1S0fBHCp3QqmnZyOKtPQWqF1vELek3ZBwc8%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4505292Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A21Z&sr=b&sp=r&sig=86qukxQFIxhLUPd7eiciGWS0PO2oMnTAAt53Qje4tMI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:21.4507872Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A21Z&se=2024-11-06T11%3A18%3A21Z&sr=c&sp=rl&sig=wz1Qp0%2FZFOloHLE2MC1Ka3kCsgKuXxWt1fyF6QpIhNE%3D","expireDateTime":"2024-11-06T11:18:21.4510169Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3201,17 +3077,17 @@ interactions: connection: - keep-alive content-length: - - '6305' + - '6289' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:16 GMT + - Wed, 06 Nov 2024 10:18:21 GMT mise-correlation-id: - - 1e7ecd8a-7fbc-4731-b94c-de8260eb581c + - af20d9d3-159e-49e0-a42d-ef20574bde93 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055316Z-18489d46dcc5trkwxb4ya4w12000000007xg0000000016f2 + - 20241106T101821Z-18557d4f7b8hswrbhC1SGEz31400000005fg000000006phu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3229,23 +3105,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:17 GMT + - Wed, 06 Nov 2024 10:18:23 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -3261,7 +3137,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: CC8647F226D54BC79F05F92B49FA70D0 Ref B: CO6AA3150217031 Ref C: 2024-10-16T05:53:17Z' + - 'Ref A: 1054B8CF5DB944C2B619B371667C5705 Ref B: MAA201060513049 Ref C: 2024-11-06T10:18:23Z' status: code: 200 message: OK @@ -3275,15 +3151,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A18Z&sr=b&sp=r&sig=iXkaH5f6n%2FGVj0XxB5XMJsVdLBo1RjIwSYnZNqWxJMI%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:18.0582199Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A18Z&sr=b&sp=r&sig=bbmvJf2wyqfLGfq8NqbSqEEc3ECMZ7G9t8Ph04J2jns%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:18.0578088Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A18Z&sr=b&sp=r&sig=7zNPhtVL2KTAlxnkTB%2BBNFCP2vTsVI0zdSvVgx3AqxQ%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:18.0583321Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A18Z&sr=b&sp=r&sig=ZBEtt0UbL99PwIieZLoFxMiOu9JmyUC87j1b%2BXCw4wU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:18.0584922Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A18Z&sr=b&sp=r&sig=rTuXlMbB31XjAsmjthMNPQQeyeW%2FcyUeNeybmaF2h4g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:18.0586696Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A18Z&sr=b&sp=r&sig=Ri5PTDuQubN%2BlTNflqUGq8egJMoJ%2FMScRFWVSMm58sI%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:18.0588515Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A18Z&sr=b&sp=r&sig=uqICMHIJEcplHpyz%2Fqgv9VZhTw3zEYkayYYygLAGbNo%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:18.0590258Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A19Z&ske=2024-10-16T12%3A49%3A19Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A18Z&se=2024-10-16T06%3A53%3A18Z&sr=c&sp=rl&sig=xZ8ivqCk10Rolr9G5uKiyIlr5afNIj8ChueRXGT9Uyk%3D","expireDateTime":"2024-10-16T06:53:18.0592239Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:16.591Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=XZHGi4H0JYBC0QxGyreqRXxMthm4CQyop6DpneHtMSM%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7771427Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=71bUZq0Tmt8dsLYQKb6Akmg69pqphKb38WdlUi7kXZU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:26.7767632Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=gonh5%2B3NbqaTkiiZIjGvQ4gNkQIBTUcSXty8rQoWqEM%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7773004Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=UMhzDUKpLpxIt949a9E2Bb4rVYkp%2B8mBGmbW6aX1HjU%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7774281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=id%2Fw6AahdLcbyHLdjebhvMPMf%2FdxVwO9W5Vwt1fwYmc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7776068Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=dYLL0RUQzl0egSo61nM6ZkquCcM%2BB%2FOOWKYhyCg0e%2F4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7777334Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A26Z&sr=b&sp=r&sig=GGaQk2kRn4hdSZdClqQ1sGIvVACZzyd4FFJZaygNMdk%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:26.7779138Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A26Z&se=2024-11-06T11%3A18%3A26Z&sr=c&sp=rl&sig=iTYv2uX0P0aVgKfjMc1dgThHhs23H13xM8%2BpSozuC3w%3D","expireDateTime":"2024-11-06T11:18:26.7780387Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3292,17 +3168,17 @@ interactions: connection: - keep-alive content-length: - - '6295' + - '6290' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:18 GMT + - Wed, 06 Nov 2024 10:18:26 GMT mise-correlation-id: - - ea636e45-4c53-45b4-a68a-db1fa50d607a + - 1aa3458c-a1a3-4966-9295-520aae2c6477 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055317Z-18489d46dccd6w2hyw4dcpanpw00000007vg00000000p6s5 + - 20241106T101826Z-er1b6dc89fd2px56hC1SG1e6d400000004zg00000000g7dg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3320,23 +3196,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:17 GMT + - Wed, 06 Nov 2024 10:18:29 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -3352,7 +3228,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2C0E822EF14846EB9D6C81DC2B4A16CD Ref B: CO6AA3150218039 Ref C: 2024-10-16T05:53:18Z' + - 'Ref A: 4F2AB17BD63644478DDD8A7BFD48B158 Ref B: MAA201060514025 Ref C: 2024-11-06T10:18:28Z' status: code: 200 message: OK @@ -3366,15 +3242,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=kdlwFBBPD7Od2BiNdpdpWloXKh0jeMOukavc%2BqcemjQ%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.0153747Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=6G4%2BudslPdyUQ8Jgm10%2FocxzlfqaUH218driGFeQ080%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:19.0150101Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=TeEr9q6vFHZQ4bWMQsj9Sf5oEYSkeOg%2BdsBFXJgO3mc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.0154741Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=mS3yY18GDODX4mmWtJY9yGF0ytDydOUJCqH3O%2Bkh6C8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.0155702Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=UwoeewaaFql%2BipwlaiIYSTe7SzdEKug2hVRFRQFHErs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.0156671Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=QSbv3eRlviyqll%2BX7MEu0%2FxdF9%2BDEzIdBu6MRzOeMZ4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.0157644Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=lOxpl9C%2F81XruxyNMxOjsfxZgK4IPQ%2FUNr%2FeT4zx8KI%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.0158712Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A50%3A03Z&ske=2024-10-17T14%3A50%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A19Z&se=2024-10-16T06%3A53%3A19Z&sr=c&sp=rl&sig=RPqW9BZQ8W5HN48B3WdHo3WHwMynKpuzWm1zbK2SedI%3D","expireDateTime":"2024-10-16T06:53:19.015969Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description1","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:16.591Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=UTtX8tdDBmbYoHVd50x000A3EZ1Z0vam8kxn%2Fmgjbz8%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1545268Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=KpIPLyX%2FSQyK36REBbfwGBydTb0KK2dC0TYSn4bsKYY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:32.1541292Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=f5D7tdlysyKzuGtCCAGX769%2FhAYSghCKohl74hNMQg0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.154693Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=ro%2BZ49VkXdtnJowxkJkjbHObjTe%2Flbb%2BjHwDGUmzLlM%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1548647Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=efvg%2Fq0kOwIzF8JXowRh3l2iaRnLRqBA%2FFSduNu4VxU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1550303Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=i8NdqwrHcEsOJWRw7t42BENhDz7RPAlFA%2F1eFSLHIU4%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1552097Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A32Z&sr=b&sp=r&sig=Pnb2spk6axX2KavgvJKC%2F%2BQmlNnS9frTTQiJoIXaCf4%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:32.1553769Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A32Z&se=2024-11-06T11%3A18%3A32Z&sr=c&sp=rl&sig=XJqyd%2FbfcAAiaQDLaMMk5RjJVdPLPU8heCdubWQI3rY%3D","expireDateTime":"2024-11-06T11:18:32.1555452Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description1","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:20.937Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3383,17 +3259,17 @@ interactions: connection: - keep-alive content-length: - - '6304' + - '6297' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:18 GMT + - Wed, 06 Nov 2024 10:18:32 GMT mise-correlation-id: - - e53b69d5-35cb-41c4-85f0-854b9a249ecb + - b6fe705a-e2f9-47c8-92fc-ea620b9e044b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055318Z-18489d46dccmwsl5v24n61fa8400000007zg000000003n42 + - 20241106T101831Z-er1b6dc89fd5dtpvhC1SG1fz0g000000050000000000hmp0 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3416,15 +3292,15 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=3VNFz%2BN%2BMlPqbGSKnss4KDFm%2FHJsAUQUfV%2FH%2F8xXc%2Fc%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.522744Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=K5sXFm%2FqdP6D517w7qfn7fWdOaa8fnsg1%2Bvih7Ur15c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:19.5225216Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=vsQvHyuWxyqt0XzsAi3Lp5KPme6Lwilpuk38y6kCCl0%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.522835Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=qVfAEOkKMebVb%2BfPrUE3PA6yd7lvF6%2FcfFMDiLL3aXQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.5229147Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=TwmZhDvXx1o9wHqZIktR0OO4al7g2BU8OdUm3oulX94%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.5230022Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=B6ba3E%2FOAwysHuDGIcHbVSRB3%2FBxYjW%2B9BaY2lw4LVY%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.523089Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=IgWzaGDjD%2BQddwGLUy7OskUht%2FPfs308%2Fb5GcGr%2BIWs%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.5231748Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A19Z&se=2024-10-16T06%3A53%3A19Z&sr=c&sp=rl&sig=ysoeB7I1FiZ6Y9AumViHhKAIdVU6TI0JTNN3wV70S%2FM%3D","expireDateTime":"2024-10-16T06:53:19.5232529Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:19.512Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=znQoBjHrmc1NKKFwbpZ4ISzDItCx71RPh2Z9KjFb51U%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.01732Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=HS0doXNAh0uQuJKLWwYBsza0QBbQ%2B63TY2VcvIiRAg4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:33.0169915Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=g6smUOc%2BJhN8tO%2BuhcNVayW1ha489WHu9AJ%2BCmAL4Pg%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0174281Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=4XBemCbSgNZStfTLVkk4QP1PVtCx3zNyowPGKFsdDas%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0175568Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=6s%2BvTrYeAuOebWpYlo3rzGfR5WhifDdEvQn2lENLVD8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0176836Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=JtexwtbELP46getWBNkq24LlYvZ66ehlVnuke4E6%2FAg%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.017812Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=52%2BIvn3JZ0l2m%2Fcl3NBVYp3rSSAOOU5htBUdk%2FT%2FPX8%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.0179379Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A33Z&se=2024-11-06T11%3A18%3A33Z&sr=c&sp=rl&sig=3vAwERw6uKOD2Wi1xHJbj4qm5lyr0C23f%2F8vjTHw6aI%3D","expireDateTime":"2024-11-06T11:18:33.0180686Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:33.007Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3433,17 +3309,17 @@ interactions: connection: - keep-alive content-length: - - '6314' + - '6293' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:19 GMT + - Wed, 06 Nov 2024 10:18:33 GMT mise-correlation-id: - - 7ebc3907-da78-4dfc-810f-fd17bf2850db + - c1ae82c9-c405-4864-a910-c388dad10bad strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055319Z-166cf497cd4q6m55tfpt35bu6000000007u000000000er5g + - 20241106T101832Z-er1b6dc89fd5dtpvhC1SG1fz0g000000050000000000hmq8 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3461,15 +3337,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=qD3x6wfMsE4e%2Btd%2FrmoYe%2FU9ednBUiKViVR6GAT7FS4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.9392483Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=u2Odn3SKGrt56MIPQfvVYKthBdVLV4QmWymOyraFO8Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:19.9389648Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=IW90itztK6CM0js3cGBHlD9EWMAYOyjnQjTsawMnl9A%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.9393485Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=HapQUk3xK4CNEwJh0QWmi3eOwEBfHkyQj5GgHXhxs3c%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.9394451Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=oLXjec3uCLZ4lS91s78UkMqpHpaJZ2vVE5XhL3dNndQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.9395428Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=hK36RYZztBx7ux9cphxNrxOl8HmS0YTuKJqWXUU7ucs%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.9396407Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A19Z&sr=b&sp=r&sig=ybsdtJHRzldJDd7ikiSZB8W4U9x2SMZfeoM%2F%2FUZB5gM%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:19.9397374Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A37Z&ske=2024-10-16T12%3A49%3A37Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A19Z&se=2024-10-16T06%3A53%3A19Z&sr=c&sp=rl&sig=6KcwLwXheGFn%2BT6GyKkCcItcAWvk6MIyRypHGB3bewI%3D","expireDateTime":"2024-10-16T06:53:19.9398336Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:19.512Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=4tw9L2PCN37yMrYXYNqcuazJzv3Tjbr9hFB1ttc1s9Y%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4111973Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=ZoOEqkQ7mYTYo4UZzVCXLcbJvVvcUc6kYo3VPmlIMwo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:33.4109126Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=EhL%2BSu%2F0ioovQcgYaDLDGwCyLUmQx7c8a6k4jz9Kl28%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4112875Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=UiKLuE1I6EGBaRRiKRljlB9Qq7crWkEwShr4LeztOEI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4113824Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=7uFvDIsj2idczDlfqlu62whcdb4EfW4QHwSGgjS5eGE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4114691Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=8BFJF5z3RuKF8BwdV%2B1QddO70xaTBT47QYOQIHQalXI%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4115552Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A33Z&sr=b&sp=r&sig=2BnE6WDDzLPwYHV7peEGnY5pU6gHKx4qfF7W%2Fl0qzcY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:33.4116422Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A14%3A08Z&ske=2024-11-06T17%3A14%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A33Z&se=2024-11-06T11%3A18%3A33Z&sr=c&sp=rl&sig=uODv%2FF9KaiaOJV2sOzNVUP7AvOJRMjRVcWtdvxsSAbE%3D","expireDateTime":"2024-11-06T11:18:33.4117271Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:33.007Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3478,17 +3354,17 @@ interactions: connection: - keep-alive content-length: - - '6293' + - '6284' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:19 GMT + - Wed, 06 Nov 2024 10:18:33 GMT mise-correlation-id: - - 949cfff7-2d53-4c30-910e-26ab929902f3 + - b4718572-1e07-4e34-8299-6263b6be3312 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055319Z-15484bdf45782nr6fa3f22900400000002f000000000br31 + - 20241106T101833Z-er1b6dc89fd5dtpvhC1SG1fz0g000000050000000000hmru x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -3506,23 +3382,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:48:08.6167615Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:48:08.6167615Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"a21494ec-ddfd-4d6c-ab36-10191dd9d030.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":"2024-11-06T10:12:55.7760712Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:12:55.7760712Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:20 GMT + - Wed, 06 Nov 2024 10:18:35 GMT etag: - - '"c5011290-0000-0200-0000-670f53ae0000"' + - '"fa00633f-0000-0200-0000-672b413e0000"' expires: - '-1' pragma: @@ -3538,7 +3414,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 80454DCED7084E9BB1EDCE1B8D66C3A1 Ref B: CO6AA3150219023 Ref C: 2024-10-16T05:53:20Z' + - 'Ref A: 6B7CEDD4F7D04A5BB184BE5A8F89B541 Ref B: MAA201060516025 Ref C: 2024-11-06T10:18:35Z' status: code: 200 message: OK @@ -3552,15 +3428,15 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://a21494ec-ddfd-4d6c-ab36-10191dd9d030.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview + uri: https://844a49f3-6c9e-4cac-a84d-7cb09a3a5ed5.eastus.cnt-prod.loadtesting.azure.com/test-runs/update-test-run-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ea2fee91-565f-48c1-b0aa-00ba207aa6fd":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"0a915c25-9eab-473a-bbce-08dde86bb41e":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"1cb1e196-c226-4193-ad3e-ba2f314b482d":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"errorDetails":[{"message":"No + string: '{"passFailCriteria":{"passFailMetrics":{"1142aa9e-40a4-4a07-8aad-00ed843974df":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"0a298d9b-f8cb-4962-81ea-0e2e984b1459":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue","actualValue":-1.0,"result":"undetermined"},"7ee7fa03-1cfb-427d-902c-dd7856638ee4":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue","actualValue":-1.0,"result":"undetermined"}}},"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":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/497a22b9-328e-40c3-8282-81352ddb9cae?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A21Z&sr=b&sp=r&sig=TahyPRnTu6VVSWv5gQ4UquD2%2B70fZFTATYYxeysg7pU%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:21.0463137Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/0deddd63-7ebe-4d3e-97e2-9cdc93ebab49?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A21Z&sr=b&sp=r&sig=Cg2ImqtzYPGBMKINsxijz%2BamIF3OnhEpz1SThELJleg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:53:21.04589Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/4543045f-5aa5-42ab-b94c-091178d43b57?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A21Z&sr=b&sp=r&sig=FJb8w1PEvm3WYdZGyNt7nF3ROwy552I%2FJWJvqcFbZ%2B8%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:21.046466Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/f3ccd142-0185-4413-9aed-88074aa27f45?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A21Z&sr=b&sp=r&sig=4X%2BxcTyKO47K16g%2BIZkIifUiAtQ%2B%2BSlDPDPyBGDtWug%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:21.0465664Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/d2548539-841b-4949-a341-f9d1901a4dd5?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A21Z&sr=b&sp=r&sig=tPx0T96geE90xQLgAw9Z55AW%2F5M4Ko%2F7ppEa%2FeLz%2FHE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:53:21.0466658Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A21Z&sr=b&sp=r&sig=4vyYxQrNhz%2FJy18t2qwi64mj7a6zMbELOidiNlZ6ZHg%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:21.0467633Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/1aa3cc45-119e-49b0-bf9b-728c8711c920/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A53%3A21Z&sr=b&sp=r&sig=vJ6Tw%2Bw2A4wZnqAdCXoeXO07H6GFe9D%2F47t6PmbiUWQ%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:53:21.0468596Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://wzce2pbn7whfkec3bxdjmi28.z6.blob.storage.azure.net/dd2b8cb7-b0cd-4c0e-b76b-a3b5aa8c0171?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A49%3A20Z&ske=2024-10-16T21%3A49%3A20Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-10-16T05%3A53%3A21Z&se=2024-10-16T06%3A53%3A21Z&sr=c&sp=rl&sig=J1RRxUJ%2FD9tOwLspkixPu%2Fg4Mj3UasvwAORuYLwOs2Q%3D","expireDateTime":"2024-10-16T06:53:21.0469539Z"}}},"testResult":"NOT_APPLICABLE","kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated - test run description2","status":"FAILED","startDateTime":"2024-10-16T05:50:04.014Z","endDateTime":"2024-10-16T05:52:50.158Z","executedDateTime":"2024-10-16T05:50:00.754Z","portalUrl":"https://portal.azure.com/#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":"2024-10-16T05:50:03.555Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:53:19.512Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + and try again."}],"testRunStatistics":{"Total":{"throughput":0.0}},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"testArtifacts":{"inputArtifacts":{"configFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/899af4b6-5e6f-4ab8-b16d-c0cce957179c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=G0pVgjHLaYm9WzLjZDWEfzOvcnsZlMCIYb89O0DrAd4%3D","fileName":"config.yaml","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8600637Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"testScriptFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/f8be0bf7-c434-42e9-9e26-f82a3b10b679?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=JGOb8JAwVQS347auT9gKRSVP0kcsDfyyw0ZI9dgxkok%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:18:38.8597501Z","validationStatus":"VALIDATION_SUCCESS"},"inputArtifactsZipFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/83d1b29c-17d7-47ad-a343-fcd193668664?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=Jt%2B5%2BsrpquFOWgIeY%2Fe%2FRgdfQiMxxMvzOMTlk4JNtUc%3D","fileName":"inputartifacts.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8601882Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"additionalFileInfo":[{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/fecbd13e-dac3-49db-a4f1-172826831ddc?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=h3UqSvDpaLvdVpt6YaasT2HCiKzpP%2Fq64ge5t9CchU4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8603436Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/62b09520-73ac-479b-8f36-98a03bb44770?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=iBrQMVc2QaG7UNCan6DhqWBib9mSgYtcJkbpgSMFpKA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8604748Z","validationStatus":"VALIDATION_SUCCESS"}]},"outputArtifacts":{"resultFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_results.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=ZPVZKJclFvFLQQtG%2Bsb8MRuEi4O87difYw8GJ13o%2FPk%3D","fileName":"csv.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8606008Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"logsFileInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/7da7b6d2-1441-4ce5-8678-924f8a6aac3a/9705861e-341c-40d8-8bbd-d96ef8b77068_logs.zip?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A18%3A38Z&sr=b&sp=r&sig=R9LUoW9XUYhiYygo4uF%2Fsdz0CCUATHIcu7paGUjCjoY%3D","fileName":"logs.zip","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:18:38.8607278Z","validationStatus":"VALIDATION_NOT_REQUIRED"},"artifactsContainerInfo":{"url":"https://zdy4rt42vedverg2wphq0s9x.z9.blob.storage.azure.net/9705861e-341c-40d8-8bbd-d96ef8b77068?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A13%3A40Z&ske=2024-11-06T17%3A13%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&st=2024-11-06T10%3A18%3A38Z&se=2024-11-06T11%3A18%3A38Z&sr=c&sp=rl&sig=GcgCGplPTR3aENLbjtqBJGiDcMw7zAp2yQzL9sMpRLM%3D","expireDateTime":"2024-11-06T11:18:38.8608612Z"}}},"testResult":"NOT_APPLICABLE","virtualUsers":0,"kind":"JMX","debugLogsEnabled":false,"requestDataLevel":"NONE","testRunId":"update-test-run-case","displayName":"TestRunDisplayNameUpdated2","testId":"update-test-case","description":"Updated + test run description2","status":"FAILED","startDateTime":"2024-11-06T10:14:55.437Z","endDateTime":"2024-11-06T10:17:33.68Z","executedDateTime":"2024-11-06T10:14:52.702Z","portalUrl":"https://portal.azure.com/#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","duration":158243,"createdDateTime":"2024-11-06T10:14:53.168Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:18:34.265Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -3569,17 +3445,17 @@ interactions: connection: - keep-alive content-length: - - '6312' + - '6503' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:53:21 GMT + - Wed, 06 Nov 2024 10:18:38 GMT mise-correlation-id: - - 27f582cb-3071-4e3f-bf14-60a468855e9f + - 33a87e09-9adb-4bbb-9edf-dd16851155c0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T055320Z-166cf497cd4v8snbtm724w4g2c0000000840000000002kyq + - 20241106T101838Z-18557d4f7b8r8cpzhC1SGEvan8000000052g00000000sbsh 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 1d06e5fab15..2e9807ace32 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest-load-000001/providers/Microsoft.Storage/storageAccounts/clitestload000003?api-version=2023-05-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":"2024-10-16T05:39:09.6523274Z","key2":"2024-10-16T05:39:09.6523274Z"},"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":"2024-10-16T05:39:09.7929542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-10-16T05:39:09.7929542Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-10-16T05:39:09.4960829Z","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":"2024-11-07T05:51:37.0663977Z","key2":"2024-11-07T05:51:37.0663977Z"},"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":"2024-11-07T05:51:37.2538951Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2024-11-07T05:51:37.2538951Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2024-11-07T05:51:36.9257745Z","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: - - Wed, 16 Oct 2024 05:39:30 GMT + - Thu, 07 Nov 2024 05:51:59 GMT expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B513D9D8A80A4EC3A89F2B1C1A49B88D Ref B: CO6AA3150219017 Ref C: 2024-10-16T05:39:30Z' + - 'Ref A: 640FD38DA7894570977CFE15A6087C7F Ref B: MAA201060515021 Ref C: 2024-11-07T05:51:59Z' status: code: 200 message: OK @@ -55,23 +55,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:30 GMT + - Thu, 07 Nov 2024 05:52:00 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -87,7 +87,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BDD1C3D411FA4B339922B9DC31D44BF7 Ref B: CO6AA3150217051 Ref C: 2024-10-16T05:39:30Z' + - 'Ref A: A356A0B6D5714B0BA53A1E437B2E1AAA Ref B: MAA201060514029 Ref C: 2024-11-07T05:52:00Z' status: code: 200 message: OK @@ -101,9 +101,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -116,15 +116,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:39:31 GMT + - Thu, 07 Nov 2024 05:52:02 GMT mise-correlation-id: - - 2a09b69b-2da7-4f6c-8302-c3062bb28ada + - 5aa69a36-3fe6-451c-8380-535e8abc425b strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T053931Z-17f5d8496679hzsmtt458u9d0400000008b00000000000c7 + - 20241107T055201Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rq1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -136,14 +136,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"20125966-1c25-4f36-b4cc-26a568baa8ea": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "451ad41d-0dc1-4902-b9e2-0f6930244b02": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "5bc4bdbe-2230-4f04-8a3b-b67b71331d67": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"eaf47aae-1654-484a-9cb0-718b2ee45a36": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "8214df18-60aa-4939-b632-c3dbbf6b5638": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "0bb17db2-a3bd-4712-83d1-6aeb21d8aada": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -152,36 +153,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"20125966-1c25-4f36-b4cc-26a568baa8ea":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"451ad41d-0dc1-4902-b9e2-0f6930244b02":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc4bdbe-2230-4f04-8a3b-b67b71331d67":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:31.81Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:39:31.81Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eaf47aae-1654-484a-9cb0-718b2ee45a36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8214df18-60aa-4939-b632-c3dbbf6b5638":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"0bb17db2-a3bd-4712-83d1-6aeb21d8aada":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:52:02.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:52:02.84Z","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 connection: - keep-alive content-length: - - '1057' + - '1051' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:31 GMT + - Thu, 07 Nov 2024 05:52:02 GMT location: - - https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview + - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 17f62f08-9db2-48f2-8eed-2d86ee78351c + - 25c4a6d1-3fb8-48ac-a0b9-1147e298f7ea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053931Z-165bfd566cf4jq7qqh4q33tppw00000007vg000000006543 + - 20241107T055202Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rqh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -199,9 +200,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -217,13 +218,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:32 GMT + - Thu, 07 Nov 2024 05:52:03 GMT mise-correlation-id: - - 00bea6b1-13f3-40c8-95c1-3ab642034de2 + - b0f31af5-ec97-4fa2-98d7-509eaf4aecd8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053931Z-17f5d8496674m6s83v2k1qvy2n00000009h000000000891c + - 20241107T055202Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rqr x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -248,33 +249,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/af4b7252-fc16-4c6c-874e-5d877a7b1cfe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A32Z&ske=2024-10-16T12%3A39%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A32Z&sr=b&sp=r&sig=TY9sxYNP9Nojd8ibwNWSJ4R1N79jBER2aQjkgTpgmz4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:32.5594714Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A04Z&sr=b&sp=r&sig=RLExnUrTZxxfFspAxVdF%2FMUexZVPlYRo7L7EXiTBOoY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:02:04.3159802Z","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 connection: - keep-alive content-length: - - '571' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:32 GMT + - Thu, 07 Nov 2024 05:52:04 GMT location: - - https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - 4f229a8c-8c06-4af9-b919-6c4b7791241f + - db52f8b4-c641-42fc-841d-8a1876b9fad0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053932Z-17f5d849667q42pgsnc7zsyqc400000006pg000000000uxu + - 20241107T055203Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rqx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -292,12 +293,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/af4b7252-fc16-4c6c-874e-5d877a7b1cfe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A32Z&ske=2024-10-16T12%3A39%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A32Z&sr=b&sp=r&sig=TY9sxYNP9Nojd8ibwNWSJ4R1N79jBER2aQjkgTpgmz4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:32.8424794Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A04Z&sr=b&sp=r&sig=RLExnUrTZxxfFspAxVdF%2FMUexZVPlYRo7L7EXiTBOoY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:02:04.6447256Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -306,17 +307,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:32 GMT + - Thu, 07 Nov 2024 05:52:04 GMT mise-correlation-id: - - 7dfe44e7-1a88-49a2-a98d-a10790d11d54 + - 26f3509a-4c36-4196-9a5e-97f747b17ca9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053932Z-17f5d849667dlw8817rng82bvc00000006e0000000001vb4 + - 20241107T055204Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rs4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -345,33 +346,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T21%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A33Z&sr=b&sp=r&sig=1BNx6y2eO720rDLevGSqnFhwVepLANSi2iwNIdvea4I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:33.2893277Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A05Z&sr=b&sp=r&sig=43vGIm6vdC34JmiWeey3gMt1c7%2F%2FVieciXlCwLIHmqI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:05.1539676Z","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 connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:33 GMT + - Thu, 07 Nov 2024 05:52:05 GMT location: - - https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 1c4d1e79-c660-4045-b95b-7a1221b39ddd + - edce2ae7-4019-4324-86e7-45a5a71bfd5d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053932Z-17f5d849667xc28w1ckc6mbf4w00000007eg000000000qva + - 20241107T055204Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rsq x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -389,54 +390,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A32Z&ske=2024-10-16T12%3A39%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A33Z&sr=b&sp=r&sig=NYn0nPaSKsSIMISDU8zY21f5Zl%2FG%2Fxnv1hLt4C4RLJk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:33.6200132Z","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 - connection: - - keep-alive - content-length: - - '572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:33 GMT - mise-correlation-id: - - e9338b5d-990c-4667-9be2-c79430420c3f - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053933Z-165bfd566cf4ghtzyebch8wysc00000004n00000000090y4 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T12%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A38Z&sr=b&sp=r&sig=lu6RerG6fDNZf8xCgJbB6%2BFwcpXw3U8rRl1NT0rU4J0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:38.9983568Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A05Z&sr=b&sp=r&sig=QDzG1fcEMKYFEQsY5Ako9asc%2FXDQ0VAujzfwatkmkP4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:05.5536731Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -449,13 +408,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:38 GMT + - Thu, 07 Nov 2024 05:52:05 GMT mise-correlation-id: - - 637faa10-1321-4f5b-8863-25f5c618bede + - d65086e4-3fe8-4331-8bde-7f8cb0cc99d7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053938Z-165bfd566cfnpqk5xu5eeg1q4g00000006v000000000bdeu + - 20241107T055205Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rtg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -473,12 +432,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T21%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A44Z&sr=b&sp=r&sig=dPT6uh8HGhUUaVXFylV%2BxANeI8Nafoj%2BxICQTsGUqBI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:44.4142925Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A10Z&sr=b&sp=r&sig=5VCAPBetXYzwxjdozjemZlDbR3TJkQjU52%2F0ZHFi2dE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:10.8522517Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -487,59 +446,17 @@ interactions: connection: - keep-alive content-length: - - '572' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:44 GMT - mise-correlation-id: - - ef00fab9-6638-4fa3-bd24-14fb0c6f62ca - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053944Z-166cf497cd4jqnrcydhdctbvm400000007ug000000003ssd - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T12%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A49Z&sr=b&sp=r&sig=Dgj1rm%2FbLz6kxlPFTtQuFCol6%2FikMks59T90ydZLI%2Fc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:49.7430128Z","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 - connection: - - keep-alive - content-length: - - '574' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:49 GMT + - Thu, 07 Nov 2024 05:52:10 GMT mise-correlation-id: - - b900d8cf-20a9-4563-ac02-908430c1d224 + - eb1dbf66-8731-4ccd-89bb-661becd50dd3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053949Z-18489d46dccp2df8e3m20gzz8w00000007vg000000006v2u + - 20241107T055210Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003rx1 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -557,12 +474,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A38Z&ske=2024-10-16T12%3A39%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A55Z&sr=b&sp=r&sig=cv62bJDo4MCM4M5e9%2FBNnJT4iIbiavqf4XfDbtvVf9Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:55.0947165Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A16Z&sr=b&sp=r&sig=qS%2F1e0k18ZWwRb2loFmGemv9lCKgx9WJpvZXnz1t1Yc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:16.1499181Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -575,13 +492,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:55 GMT + - Thu, 07 Nov 2024 05:52:16 GMT mise-correlation-id: - - 9c752eb9-0e03-4c1e-bbc0-6184cfcb0a59 + - 24b09679-77b7-4c1b-84db-80cc858b073c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053954Z-18489d46dcc7qds9rw9wr310dc0000000670000000000yee + - 20241107T055215Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003s1g x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -599,12 +516,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A00Z&ske=2024-10-16T12%3A40%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A00Z&sr=b&sp=r&sig=H4vG23zG4ddfZQdweSDNGhb3Y5AzZ0%2FwXenk%2Bt4MOXE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:00.4972347Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A21Z&ske=2024-11-07T12%3A52%3A21Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A22Z&sr=b&sp=r&sig=bSOx%2FL4TKarjYWtrp5qpUlLg7ogrRbh6DcPM3Y4YQP4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:22.0899213Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -613,17 +530,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:00 GMT + - Thu, 07 Nov 2024 05:52:22 GMT mise-correlation-id: - - a191e44e-8f42-452e-b02b-0191b2b2837d + - e7fdf8a3-9288-4d16-bae6-6656d95f8a5c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054000Z-166cf497cd4jqnrcydhdctbvm400000007tg000000005thc + - 20241107T055221Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003s5m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -641,12 +558,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A05Z&ske=2024-10-16T12%3A40%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A05Z&sr=b&sp=r&sig=R%2BHNEyf5DNWXT6neVU%2FdLdYrmVRHs%2F1RMvAmsEzMMpo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:05.8517315Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A27Z&sr=b&sp=r&sig=B9mxjtGvwxlXxnjq%2BbR3GQSfMcskQHfznUwQjsPSRPM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:02:27.3876642Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -655,17 +572,17 @@ interactions: connection: - keep-alive content-length: - - '572' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:05 GMT + - Thu, 07 Nov 2024 05:52:27 GMT mise-correlation-id: - - d53e8fb8-e9fb-4d60-942f-01e4313efde3 + - b150e198-5c8f-4484-9192-b714a99bd232 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054005Z-166cf497cd48w6x2zuxa69f51n00000007zg000000006773 + - 20241107T055227Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003saz x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -775,33 +692,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A33Z&ske=2024-10-16T21%3A39%3A33Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A06Z&sr=b&sp=r&sig=mX%2BN8Sl7UmuHtg933UxtWsUkLt7KoKbnZFBXjlgSgHE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:06.3103491Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A27Z&ske=2024-11-07T21%3A52%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A27Z&sr=b&sp=r&sig=BZ5PyCwRS2mTnyOwvQ9YL5oassukKZpq%2Fc%2FuVDqOn40%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:27.9567102Z","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 connection: - keep-alive content-length: - - '558' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:06 GMT + - Thu, 07 Nov 2024 05:52:28 GMT location: - - https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - c86497ab-9209-4ac4-a270-8b5f25edef3a + - 6838d587-91b3-48bf-98c4-e242c3110e49 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054005Z-166cf497cd4xh8zq4d721105qg00000007t000000000g8xq + - 20241107T055227Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sb7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -819,54 +736,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A05Z&ske=2024-10-16T12%3A40%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A06Z&sr=b&sp=r&sig=Zrt76OQL1FUIi0peJg6F7tbmAOeFP4YuPXw5iP6kO6A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:06.6625269Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:40:06 GMT - mise-correlation-id: - - 2e1d320f-8983-4ff7-937b-0d46f19f4564 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054006Z-166cf497cd4z69dq84z53rfxzw00000004zg00000000e5hr - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A32Z&ske=2024-10-16T12%3A39%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A12Z&sr=b&sp=r&sig=ALBNhXNJoceDElSvRp2khPR4%2FsCsfdkIpjD0Zwr4tYA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:12.0637662Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A28Z&ske=2024-11-07T12%3A52%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A28Z&sr=b&sp=r&sig=AeK061SKrjbYi%2FowRQTsNE0MZIwFe03qMPReuuczWK8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:28.8418716Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -879,13 +754,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:12 GMT + - Thu, 07 Nov 2024 05:52:28 GMT mise-correlation-id: - - f7366a39-0b25-4a1e-8839-052056ba2b98 + - aae1a3f8-8dad-4201-870b-61f3cd46fd4d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054011Z-166cf497cd4jdw4g4y9hv6ku6n00000007t000000000dc7p + - 20241107T055228Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sbp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -903,12 +778,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A32Z&ske=2024-10-16T12%3A39%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A17Z&sr=b&sp=r&sig=AS5larjarvkZVots5xaSw9vywHC9C5QxN4CX2Yu%2BWng%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:17.4476279Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A34Z&sr=b&sp=r&sig=gF6vao3WAVS6Q6pUMqqF0pBAbgA0KcbRP5kNBc5TqfA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:34.1346132Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -917,17 +792,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:17 GMT + - Thu, 07 Nov 2024 05:52:34 GMT mise-correlation-id: - - 70d4a4b9-ccd4-4085-bb38-ad510b567355 + - 072513e1-3ceb-428d-b569-a8bddd11e9c6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054017Z-166cf497cd4q6m55tfpt35bu6000000007rg00000000hm4c + - 20241107T055233Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sgg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -945,12 +820,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A00Z&ske=2024-10-16T12%3A40%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A22Z&sr=b&sp=r&sig=dwjxdRdWX5nvQe%2FC6QwUVzKaTqw2nxvvhOHjAD81wYw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:22.7660165Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A39Z&sr=b&sp=r&sig=DzsMw99jLICOJ20rNfOW3s4HUQ6PmJMM8jY4dFW%2FgjY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:39.4523802Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -963,13 +838,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:22 GMT + - Thu, 07 Nov 2024 05:52:39 GMT mise-correlation-id: - - 865a3ffb-4092-4b99-bbd4-c361cb7ed2ca + - d1e93356-9d9d-4f11-b330-61f3f3c30b2a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054022Z-166cf497cd4z69dq84z53rfxzw00000004y000000000gcu9 + - 20241107T055239Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sp3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -987,12 +862,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A28Z&ske=2024-10-16T12%3A40%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A28Z&sr=b&sp=r&sig=pgRdcJhrt%2FOI%2Btl38Os4%2FbA8ghUvewboCSxlMjPUa4w%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:28.1680886Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A28Z&ske=2024-11-07T12%3A52%3A28Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A44Z&sr=b&sp=r&sig=0Pqw%2BH3I7n94QGdDpnxyY1JCH6lpjg64c4pYs%2Frhv68%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:44.7382522Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1001,17 +876,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:28 GMT + - Thu, 07 Nov 2024 05:52:44 GMT mise-correlation-id: - - eb4dd59b-08cb-4d87-8bb2-6145c8860e79 + - b248023f-00d3-4bf6-b1dd-c4053941cca9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054027Z-15484bdf4575xp6m65z1ff0ptn00000002b00000000032pd + - 20241107T055244Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003ssx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1029,12 +904,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A32Z&ske=2024-10-16T12%3A39%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A33Z&sr=b&sp=r&sig=%2BtNlKF%2BgrAytE9J7bBneK%2Byw5k8wyxS6Cjwbc4fIZgM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:33.5560143Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A27Z&ske=2024-11-07T21%3A52%3A27Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A50Z&sr=b&sp=r&sig=MfJyMQqKH3HhGSH5njN%2BhynISc7exsYJSEMCjiuYSd4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:50.0310173Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1043,17 +918,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:33 GMT + - Thu, 07 Nov 2024 05:52:50 GMT mise-correlation-id: - - c374932b-fdf2-40e3-a953-f24d10dcb614 + - 9a8cddbb-a782-46f8-8610-5a245f15633c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054033Z-15484bdf457jvkjnektp2rx17000000002r000000000k35g + - 20241107T055249Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003sx2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1071,12 +946,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A05Z&ske=2024-10-16T12%3A40%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A38Z&sr=b&sp=r&sig=4QpIMMypVJSbwPy%2BrMfBaMaR%2FYHgLNVrRvUqirtmLtA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:38.8841731Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A02%3A55Z&sr=b&sp=r&sig=IOvvApN2Mf4%2Fu%2FZplWYwprXuxHcObXcpiIYWoQFCqRY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:02:55.3148775Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1089,13 +964,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:38 GMT + - Thu, 07 Nov 2024 05:52:55 GMT mise-correlation-id: - - fc2ec720-c707-4d1d-86dc-6f9ab10a4764 + - eb108d70-4034-4a43-a14b-cd070ad014a5 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054038Z-17f5d849667xvkmtuucmr70ff400000006kg000000001bfd + - 20241107T055255Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003t2y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1113,12 +988,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A05Z&ske=2024-10-16T12%3A40%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A44Z&sr=b&sp=r&sig=X%2F%2FkIt%2FIjjHmn8G9OGDHfOFNCu2Ji58XGdKLo9M1x5o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:44.2070248Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A03%3A00Z&sr=b&sp=r&sig=vKLREnMIWBbT88nX7Wwt3AALCmKEWmrgax%2F1296oZIs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:03:00.6017601Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1127,17 +1002,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:44 GMT + - Thu, 07 Nov 2024 05:53:00 GMT mise-correlation-id: - - 3f73e397-6956-4669-ba11-fe84fbedde0f + - f5267d8d-3013-4325-8248-e8b28d48108d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054044Z-165bfd566cfmxlrm0nasv9ne5w00000008a0000000001vy5 + - 20241107T055300Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003t77 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1155,13 +1030,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"20125966-1c25-4f36-b4cc-26a568baa8ea":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"451ad41d-0dc1-4902-b9e2-0f6930244b02":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc4bdbe-2230-4f04-8a3b-b67b71331d67":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A42Z&ske=2024-10-16T19%3A40%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A44Z&sr=b&sp=r&sig=cdHYLR%2FX07ouc9NhJ66sXoVHTh7F4p1uwEgfFpktuOw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:44.4721699Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/af4b7252-fc16-4c6c-874e-5d877a7b1cfe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A42Z&ske=2024-10-16T19%3A40%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A44Z&sr=b&sp=r&sig=2LTXX8omLaWuQK6%2FqNwDsGdu5ILpO%2Fi5Q4ALn6IBE9k%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:44.4724881Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A42Z&ske=2024-10-16T19%3A40%3A42Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A44Z&sr=b&sp=r&sig=zfalED5qGs37hvQTeBV37k8b2nRgqSlw5Op5j1UsU1Q%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:44.472621Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:31.81Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:42.679Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"eaf47aae-1654-484a-9cb0-718b2ee45a36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8214df18-60aa-4939-b632-c3dbbf6b5638":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"0bb17db2-a3bd-4712-83d1-6aeb21d8aada":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A00Z&sr=b&sp=r&sig=eqdX%2F46fm8TlWssweSQb7ACslkdIhcVqNYvFe0JjON4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:53:00.8930958Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A00Z&sr=b&sp=r&sig=QU221SaV6apDfvjllyxW1J9y5YMfhYuxu63qskEX%2FHs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:53:00.8935621Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A05Z&ske=2024-11-07T21%3A52%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A00Z&sr=b&sp=r&sig=yPWKYGpqgQb%2BRwHLoRPDe388GcZMxVaj4wQCik12CY0%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:53:00.8937392Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:52:02.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:52:55.576Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1170,17 +1045,17 @@ interactions: connection: - keep-alive content-length: - - '2777' + - '2772' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:44 GMT + - Thu, 07 Nov 2024 05:53:00 GMT mise-correlation-id: - - af0e76bf-53d1-4d0c-a481-81488ec3f12e + - d7ef69a7-0b32-4cb8-af4b-294e43ef3d08 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054044Z-17f5d849667qg6t9uvfp3m2p2w00000005mg00000000d6ag + - 20241107T055300Z-184f6b5dbd897bpphC1MAAk8x8000000074g000000003t7e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1198,23 +1073,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:44 GMT + - Thu, 07 Nov 2024 05:53:01 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -1230,7 +1105,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9540B2FC5F924573B961C44FF7B790A1 Ref B: CO6AA3150220017 Ref C: 2024-10-16T05:40:44Z' + - 'Ref A: 40DE491718EA49E7BBBE8F8F423294D7 Ref B: MAA201060513051 Ref C: 2024-11-07T05:53:02Z' status: code: 200 message: OK @@ -1244,13 +1119,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"20125966-1c25-4f36-b4cc-26a568baa8ea":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"451ad41d-0dc1-4902-b9e2-0f6930244b02":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"5bc4bdbe-2230-4f04-8a3b-b67b71331d67":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/d599a78e-5bf8-4f56-91ea-5ce7107cb10d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A05Z&ske=2024-10-16T12%3A40%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A45Z&sr=b&sp=r&sig=2%2BN%2B54BZE3iW2jdBy04ehjK0h5gzY3Vryl8NjZ%2Bz360%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:45.5027978Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/af4b7252-fc16-4c6c-874e-5d877a7b1cfe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A05Z&ske=2024-10-16T12%3A40%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A45Z&sr=b&sp=r&sig=DGltmMGVB77wf%2FkMiQT%2Bou0Ppnvh8WGgHHZerrMgrqY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:45.5032078Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://mmzvf29a4eyql9lqjspsjle2.z31.blob.storage.azure.net/6657d44e-96df-436c-8b92-e1303e38bf79/f17875f4-bfbe-4aef-a959-967ec4335028?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A05Z&ske=2024-10-16T12%3A40%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A45Z&sr=b&sp=r&sig=hf2RsI8ZMlPWILYMIgQrUYVrOb0ioeIFyOGll%2BDSdZw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:45.5033493Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:31.81Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:42.679Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"eaf47aae-1654-484a-9cb0-718b2ee45a36":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"8214df18-60aa-4939-b632-c3dbbf6b5638":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"0bb17db2-a3bd-4712-83d1-6aeb21d8aada":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/b915c28a-c416-4291-a56b-44d854642dbf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A04Z&sr=b&sp=r&sig=kj%2B7jMtfctlZuTXf4%2B3buzyO%2BgnjYaPHJzDmvLYkfNk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-07T06:53:04.3109456Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/f8b25c5c-4bb3-4dcc-806c-c5c97579bb59?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A04Z&sr=b&sp=r&sig=zo7LkqmvJqhgm8AoKvGDmf7z4fHjJzQcqOlHRzPXJPE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-07T06:53:04.3114888Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://phztz3j3od1iuezawxcygibc.z31.blob.storage.azure.net/b0d0a0c5-11a5-41f8-8b6e-5e08953ccae8/5ab647ac-ddb3-4bc1-b81e-b8358f98be84?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-07T05%3A52%3A04Z&ske=2024-11-07T12%3A52%3A04Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-07T06%3A53%3A04Z&sr=b&sp=r&sig=GaRJch4RmT9Q2o7gMMtuHm9jbVSvotCgX6jIeyXX%2FyU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-07T06:53:04.3116856Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"server-metric-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-07T05:52:02.84Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:52:55.576Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1259,17 +1134,17 @@ interactions: connection: - keep-alive content-length: - - '2796' + - '2786' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:45 GMT + - Thu, 07 Nov 2024 05:53:04 GMT mise-correlation-id: - - 589e81c0-daf3-4efa-834f-2b6254c8b1a5 + - d49cd205-90b7-4826-a3b3-ca25ef886a5a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054045Z-165bfd566cfdmznfsy8bqd99tg00000009hg00000000dp3p + - 20241107T055303Z-16bf8d9b4c7zbtm7hC1BOMhr0s00000007b000000001kfs2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1287,23 +1162,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:46 GMT + - Thu, 07 Nov 2024 05:53:05 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -1319,14 +1194,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E5A834373A9F494589CA7D482FEA237F Ref B: CO6AA3150218017 Ref C: 2024-10-16T05:40:45Z' + - 'Ref A: DBC984E0FE5E4356A6C746EC7E4D1EE9 Ref B: MAA201060514045 Ref C: 2024-11-07T05:53:05Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7hz2ulkdzmebmxkoj/providers/Microsoft.Storage/storageAccounts/clitestloadg5opnhslb": - {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7hz2ulkdzmebmxkoj/providers/Microsoft.Storage/storageAccounts/clitestloadg5opnhslb", - "resourceName": "clitestloadg5opnhslb", "resourceType": "Microsoft.Storage/storageAccounts", + body: '{"testId": "server-metric-test-case", "components": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye": + {"resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye", + "resourceName": "clitestloadkiuze64ye", "resourceType": "Microsoft.Storage/storageAccounts", "kind": "Storage"}}}' headers: Accept: @@ -1338,33 +1213,33 @@ interactions: Content-Length: - '513' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-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":"2024-10-16T05:40:46.479Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:46.479Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:53:07.548Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:07.548Z","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 connection: - keep-alive content-length: - - '741' + - '735' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:46 GMT + - Thu, 07 Nov 2024 05:53:07 GMT location: - - https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-03-01-preview + - https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-03-01-preview mise-correlation-id: - - bc798458-be43-4382-aacc-48474970cfc7 + - 5ff128be-361e-469e-9539-bd6cbb950fcc strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054046Z-17f5d849667qmr9byegk96121000000009g0000000000ah1 + - 20241107T055307Z-16bf8d9b4c7txwfdhC1BOM9ahs00000007k000000001h3v5 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1382,23 +1257,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:46 GMT + - Thu, 07 Nov 2024 05:53:09 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -1414,7 +1289,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E44152B8795B4FB5A6CE27D496729194 Ref B: CO6AA3150219023 Ref C: 2024-10-16T05:40:46Z' + - 'Ref A: FAD30A0A854F4AFEA1607C98EDD6C25F Ref B: MAA201060513035 Ref C: 2024-11-07T05:53:09Z' status: code: 200 message: OK @@ -1428,12 +1303,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/app-components?api-version=2024-05-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":"2024-10-16T05:40:46.479Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:46.479Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:53:07.548Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:07.548Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1442,17 +1317,17 @@ interactions: connection: - keep-alive content-length: - - '741' + - '735' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:47 GMT + - Thu, 07 Nov 2024 05:53:11 GMT mise-correlation-id: - - 769471b7-d43a-4f13-ac04-a41f916e8b81 + - 04bae537-da2b-42ab-80bc-8db541bc4ba2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054047Z-17f5d849667vm2s91vagzspe4s000000056g000000008az3 + - 20241107T055311Z-16bf8d9b4c7x9rmfhC1BOM2c9800000007fg00000001h9t2 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1470,23 +1345,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:47 GMT + - Thu, 07 Nov 2024 05:53:14 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -1502,14 +1377,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5877BE78F8E348B09CC0D66A103CD3D9 Ref B: CO6AA3150218027 Ref C: 2024-10-16T05:40:47Z' + - 'Ref A: 3F884E7D63CE4B4DAEE6C4246F5AE3BA Ref B: MAA201060516033 Ref C: 2024-11-07T05:53:12Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7hz2ulkdzmebmxkoj/providers/Microsoft.Storage/storageAccounts/clitestloadg5opnhslb/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye/providers/microsoft.insights/metricdefinitions/Availability": {"name": " Availability", "metricNamespace": "microsoft.storage/storageaccounts", - "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7hz2ulkdzmebmxkoj/providers/Microsoft.Storage/storageAccounts/clitestloadg5opnhslb", + "aggregation": "Average", "resourceId": "/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye", "resourceType": "Microsoft.Storage/storageAccounts"}}}' headers: Accept: @@ -1521,16 +1396,16 @@ interactions: Content-Length: - '618' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-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":"2024-10-16T05:40:46.504Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:48.252Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:15.634Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1539,17 +1414,17 @@ interactions: connection: - keep-alive content-length: - - '3241' + - '3235' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:48 GMT + - Thu, 07 Nov 2024 05:53:15 GMT mise-correlation-id: - - 9eb0e747-218c-4414-b94d-90ee9b93da86 + - 7cff2c36-8bc5-45f7-bf7b-043039faac48 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054048Z-165bfd566cfh2hdm2qr2zhn4yg000000011g000000006cm0 + - 20241107T055315Z-16bf8d9b4c79zqhnhC1BOMb6w400000007p0000000015mnh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1567,23 +1442,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:48 GMT + - Thu, 07 Nov 2024 05:53:17 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -1599,7 +1474,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 20124DFAA5344376B9B165D9DBE65CE5 Ref B: CO6AA3150217011 Ref C: 2024-10-16T05:40:48Z' + - 'Ref A: 03CC335763CD4E88B6305B8D94820300 Ref B: MAA201060513029 Ref C: 2024-11-07T05:53:16Z' status: code: 200 message: OK @@ -1613,14 +1488,14 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-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":"2024-10-16T05:40:46.504Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:48.252Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:15.634Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1629,17 +1504,17 @@ interactions: connection: - keep-alive content-length: - - '3241' + - '3235' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:49 GMT + - Thu, 07 Nov 2024 05:53:19 GMT mise-correlation-id: - - 6b27c6df-3cbb-47ca-91f9-7af27bc9f59e + - b000e9f8-fec8-4ccd-a19a-6fcb236f8fca strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054048Z-165bfd566cf4k2zhgy89gpw604000000091g000000005g53 + - 20241107T055318Z-16bf8d9b4c79v4bbhC1BOMgnfn00000007d000000001gnnw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1657,23 +1532,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:49 GMT + - Thu, 07 Nov 2024 05:53:20 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -1689,12 +1564,12 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DDA9C495E64B4C67888A81451552B2FB Ref B: CO6AA3150219025 Ref C: 2024-10-16T05:40:49Z' + - 'Ref A: ECF74A31298A418C9A067423AE00EA65 Ref B: MAA201060515039 Ref C: 2024-11-07T05:53:20Z' status: code: 200 message: OK - request: - body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-7hz2ulkdzmebmxkoj/providers/Microsoft.Storage/storageAccounts/clitestloadg5opnhslb/providers/microsoft.insights/metricdefinitions/Availability": + body: '{"testId": "server-metric-test-case", "metrics": {"/subscriptions/7c71b563-0dc0-4bc0-bcf6-06f8f0516c7a/resourceGroups/clitest-load-iz7t55dw526dop6aa/providers/Microsoft.Storage/storageAccounts/clitestloadkiuze64ye/providers/microsoft.insights/metricdefinitions/Availability": null}}' headers: Accept: @@ -1706,14 +1581,14 @@ interactions: Content-Length: - '282' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/merge-patch+json method: PATCH - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-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":"2024-10-16T05:40:46.504Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:49.991Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:22.729Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1722,17 +1597,17 @@ interactions: connection: - keep-alive content-length: - - '2495' + - '2489' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:50 GMT + - Thu, 07 Nov 2024 05:53:22 GMT mise-correlation-id: - - 3581785f-3eac-42c0-80ba-218a973f2f49 + - a17cb2a2-0658-4383-a832-d42226a971c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054049Z-17f5d849667mcvjp5w9fsbsaug00000007kg000000003wn9 + - 20241107T055322Z-16bf8d9b4c7r848jhC1BOMdr7n00000007p000000001bec7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1750,23 +1625,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.5818829Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.5818829Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b13f0e78-e62e-460a-9339-44afdc81436c.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":"2024-11-07T05:51:00.3187468Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T05:51:00.3187468Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:49 GMT + - Thu, 07 Nov 2024 05:53:24 GMT etag: - - '"c501e372-0000-0200-0000-670f51730000"' + - '"13018ba3-0000-0200-0000-672c555e0000"' expires: - '-1' pragma: @@ -1782,7 +1657,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D8FCE088EDA345B0897803B4CA1E4A57 Ref B: CO6AA3150218047 Ref C: 2024-10-16T05:40:50Z' + - 'Ref A: 01FFFDDAD7D84E09B2ED299FA2572F84 Ref B: MAA201060513009 Ref C: 2024-11-07T05:53:23Z' status: code: 200 message: OK @@ -1796,12 +1671,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.65.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://b13f0e78-e62e-460a-9339-44afdc81436c.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-01-preview + uri: https://0ce39766-50e8-4f79-8dc4-301339598f58.eastus.cnt-prod.loadtesting.azure.com/tests/server-metric-test-case/server-metrics-config?api-version=2024-05-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":"2024-10-16T05:40:46.504Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:49.991Z","lastModifiedBy":"mbhardwaj@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":"2024-11-07T05:53:07.573Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-07T05:53:22.729Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1810,17 +1685,17 @@ interactions: connection: - keep-alive content-length: - - '2495' + - '2489' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:50 GMT + - Thu, 07 Nov 2024 05:53:26 GMT mise-correlation-id: - - b01f41a5-a968-4639-bee1-f31ebc4ebc26 + - df3e1082-b0b9-4f85-a4d2-b8129cbf983c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054050Z-17f5d849667w6jv7rkqk450w7c00000001v0000000004we7 + - 20241107T055325Z-16bf8d9b4c7w4l4chC1BOMu1nn00000007gg00000001wx1z 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 a5ae71d5aa9..74fc9a57e19 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:57.6736634Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:57.6736634Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cab6275-b150-4396-8e5a-fc4934b431fe.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":"2024-11-06T10:01:28.2816881Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:28.2816881Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:29 GMT + - Wed, 06 Nov 2024 10:02:03 GMT etag: - - '"c501e579-0000-0200-0000-670f51ff0000"' + - '"fa006c15-0000-0200-0000-672b3e8f0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A4A752AA2FDD408FADE20094A6337CDD Ref B: CO6AA3150218029 Ref C: 2024-10-16T05:41:29Z' + - 'Ref A: D6717F6883B0420FB2679D4377F6E8D1 Ref B: MAA201060513027 Ref C: 2024-11-06T10:02:02Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:41:29 GMT + - Wed, 06 Nov 2024 10:02:05 GMT mise-correlation-id: - - bebad1a5-5690-4e10-bd01-0e9dceb841fa + - 6277f719-799e-4ad7-a368-36ef64928c32 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054129Z-18489d46dccgwx6cyqev009zy000000007vg00000000261y + - 20241106T100205Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pt5k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"ae32482b-ad04-43f5-b357-52fafdf7e09f": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "01e7d313-f335-4025-b8ce-e2cc79b1bfe4": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "d10990d5-b56c-4c17-b9d2-8e505715112b": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "6a765184-5ff7-4196-b081-34219ae29402": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "e0b2c724-de10-453e-bfdf-a77ed518029b": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ae32482b-ad04-43f5-b357-52fafdf7e09f":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01e7d313-f335-4025-b8ce-e2cc79b1bfe4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d10990d5-b56c-4c17-b9d2-8e505715112b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:30.506Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:30.506Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:06.128Z","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 connection: - keep-alive content-length: - - '1050' + - '1044' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:30 GMT + - Wed, 06 Nov 2024 10:02:06 GMT location: - - https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview + - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 04542a2b-d869-4216-a41c-290a4e96f844 + - aafa5995-710c-453c-841a-a38048f21cea strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054130Z-166cf497cd4t2mlmt579burh8800000007100000000033ec + - 20241106T100205Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pt8f x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:30 GMT + - Wed, 06 Nov 2024 10:02:06 GMT mise-correlation-id: - - bead9452-dbbd-484d-8d3b-264fbd212516 + - 5d35fe92-d8e3-430d-8db6-f2cc1f3a9b32 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054130Z-18489d46dccd6w2hyw4dcpanpw00000007x000000000ess8 + - 20241106T100206Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptas x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/1098defd-2452-499f-94f8-352c7d650baf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A31Z&sr=b&sp=r&sig=1%2FR1mjwgXRjnaf9shdjh1oNhtApY7bPAmxoy%2Bl%2BIQlY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:51:31.4716736Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A08Z&sr=b&sp=r&sig=cALpEb16GaEwfwsQZS%2BcSQ5tdvsmtBXfHWdSI2FZuaY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:08.6539454Z","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 connection: - keep-alive content-length: - - '576' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:31 GMT + - Wed, 06 Nov 2024 10:02:08 GMT location: - - https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - dc039c9e-da9b-465f-aa72-0a848bd64a22 + - 2dfaf521-2468-4add-a085-3b9ad1e620b0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054131Z-18489d46dcc6jcdlqqc3agq27c000000080g000000004nnk + - 20241106T100206Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptbv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/1098defd-2452-499f-94f8-352c7d650baf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A31Z&sr=b&sp=r&sig=1%2FR1mjwgXRjnaf9shdjh1oNhtApY7bPAmxoy%2Bl%2BIQlY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:51:31.9371239Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A09Z&sr=b&sp=r&sig=67vFuQFENgbqr3AbUx9WzffL09vmeZhVfR1cefAUZnE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:12:09.0093555Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '576' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:31 GMT + - Wed, 06 Nov 2024 10:02:09 GMT mise-correlation-id: - - 6ea5fef8-edbd-406b-a269-666d9d8566ee + - 77c1644c-7500-4741-a2cf-53cb2a01ca52 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054131Z-166cf497cd4r6hmp97992txd7w00000007y000000000anm5 + - 20241106T100208Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptvd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A32Z&ske=2024-10-16T21%3A41%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A32Z&sr=b&sp=r&sig=%2BLNyTG%2FuZQedfiBYEfBeHxMY9pmDcOndeeINsAKTA24%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:32.4322239Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A11Z&ske=2024-11-07T02%3A02%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A11Z&sr=b&sp=r&sig=c%2FYMjZDzhep1JIy5mHHpSsJsIBjIpg48r4GAc4uBwbw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:11.0610378Z","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 connection: - keep-alive content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:32 GMT + - Wed, 06 Nov 2024 10:02:11 GMT location: - - https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 60f8a739-bc6c-4a07-aca5-5762e2313b6f + - 6190989e-2948-41c1-90d7-866ce244374b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054132Z-18489d46dccnnh2b19wcyx7sm000000007w000000000g8ay + - 20241106T100209Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001ptxa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A32Z&sr=b&sp=r&sig=Hznw5CKl1hxsHe2C61NNMb4%2F1Dj05pA1ELC02PIOKyI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:32.8365123Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A11Z&ske=2024-11-06T17%3A02%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A11Z&sr=b&sp=r&sig=YSyZmHG5gdVfyRfQkBeQlWz%2BFh2bXYPbXzRkYqK5FdE%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:11.3803073Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:32 GMT + - Wed, 06 Nov 2024 10:02:11 GMT mise-correlation-id: - - bb41ae11-11df-4211-a827-2ab2554ae810 + - a70b62a2-6036-4cf8-9424-0c0f73c8d3e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054132Z-18489d46dccgwx6cyqev009zy000000007pg00000000gs3c + - 20241106T100211Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pu97 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A38Z&ske=2024-10-16T12%3A41%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A38Z&sr=b&sp=r&sig=2eZcKHenOIaz%2FRoV5izyY3g8Sq34Lt%2BDWBL%2FqlcMFZg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:38.3689226Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A16Z&sr=b&sp=r&sig=dhTnG%2BnDx4IY37UNnRCzbTkUZEFXXt5nzB4vd%2B1j3Hs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:16.6833238Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -399,17 +400,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:38 GMT + - Wed, 06 Nov 2024 10:02:16 GMT mise-correlation-id: - - a8dff5ed-b0bc-470e-8e1d-1561c6d8492a + - 7eec849b-8aad-4770-87b2-2b7d2d178c0d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054138Z-18489d46dccggs4rh24eyxmvec00000007wg000000004tsc + - 20241106T100216Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001puyg x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A43Z&ske=2024-10-16T12%3A41%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A43Z&sr=b&sp=r&sig=87gSZQ12wDJOGp0v50xmdY04ODV%2Fkj5%2Fi6ZjTYuiCks%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:43.9384036Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A21Z&sr=b&sp=r&sig=3ZGfZ3Nq9IkbJ%2FHme0Vj5yzwGoDvxCcQt2jgOtDqAH8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:21.99083Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:43 GMT + - Wed, 06 Nov 2024 10:02:22 GMT mise-correlation-id: - - f5848cfc-1817-4d64-82eb-c550e5f3d767 + - 980ae266-5c0a-418d-bc64-18f6b688904c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054143Z-165bfd566cfwjg8lbgwdvhqf0g00000009xg000000000g5d + - 20241106T100221Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pvqm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A49Z&sr=b&sp=r&sig=Uv6QEwtEyYhEYzwx3t85qh%2B3dnV5pDYiaCczFdfSPIY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:49.2509226Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A27Z&sr=b&sp=r&sig=XXhHEoGal79rT2X1vZaUeP7kd6wIMTreOWt4aJqsWSU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:27.2768569Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:49 GMT + - Wed, 06 Nov 2024 10:02:27 GMT mise-correlation-id: - - 7d912556-4ef7-4bce-9d75-63d6271eb6cc + - 1839714a-2a88-42a4-986d-a38f42b2e555 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054149Z-165bfd566cfflhdmg194td87c000000006m0000000005tta + - 20241106T100227Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pwaa x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A32Z&ske=2024-10-16T21%3A41%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A54Z&sr=b&sp=r&sig=vktZfakDLWiaDucaMkOO3cNF51BRjdNXxijdYW2mAvs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:54.5735771Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A32Z&sr=b&sp=r&sig=WS%2Bc1De3T2qQA2449T%2Bt%2BuE5c8eWEz9f8wHeqNJFlsY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:32.5890655Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -525,17 +526,17 @@ interactions: connection: - keep-alive content-length: - - '567' + - '574' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:54 GMT + - Wed, 06 Nov 2024 10:02:32 GMT mise-correlation-id: - - 76049f90-48e8-4d43-9839-ebd98d5a82b1 + - 40ffffcd-365c-4e92-84a3-4b59d71f00e3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054154Z-165bfd566cf4jq7qqh4q33tppw00000007vg00000000692y + - 20241106T100232Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001px0s x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -553,12 +554,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A59Z&sr=b&sp=r&sig=7EIAJJ6H7fvNc0zbQnvCEQ%2F4xjD2%2BJ8zy9H%2FfgQwULA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:59.8990871Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A37Z&sr=b&sp=r&sig=%2BIpENls0AcBX3AxkuozUewedn%2B2VF0Y3l2Sx2rgPf2I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:12:37.9020718Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -567,17 +568,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '570' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:59 GMT + - Wed, 06 Nov 2024 10:02:37 GMT mise-correlation-id: - - 8074b13d-05ca-4965-92ff-8df8ac3fe71c + - 4d2907a9-87bc-480b-b85c-4da6edf8bbbf strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054159Z-165bfd566cfd2dxssq2e8pp1zc000000092000000000e6xr + - 20241106T100237Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pxz7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +688,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A01Z&ske=2024-10-16T21%3A42%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A01Z&sr=b&sp=r&sig=3vRd8psCQsDREyq70c%2B6CwRDaEiypXYd8lXQkQFFJe8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:01.1277281Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A38Z&ske=2024-11-07T02%3A02%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A38Z&sr=b&sp=r&sig=FhAKWc8gSsew8ZLKQs1A5V03hItpZv9itEH99My%2FaXY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:38.3506225Z","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 connection: - keep-alive content-length: - - '557' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:01 GMT + - Wed, 06 Nov 2024 10:02:38 GMT location: - - https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - 4577254e-ffdf-4aea-8346-71414ca1ff96 + - 1c32a212-2f02-46d1-9099-392ffca71763 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054159Z-165bfd566cftkzshba71wsxr9s00000006q0000000000azt + - 20241106T100238Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pxzx x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,12 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A43Z&ske=2024-10-16T12%3A41%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A01Z&sr=b&sp=r&sig=onK6%2FJxuyz%2Bbslc0i5Ul8%2Faxd6%2FhdyFgokjtjoMpp9c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:01.4443979Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A38Z&sr=b&sp=r&sig=EaWtGhs1EILpoDXeHBlv7f7EK4BI6f%2B0QBQW%2FbBLlf4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:38.6735321Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -745,17 +746,17 @@ interactions: connection: - keep-alive content-length: - - '563' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:01 GMT + - Wed, 06 Nov 2024 10:02:38 GMT mise-correlation-id: - - 1c1fac60-8e63-44cb-8abc-93505570263f + - 89905a87-4ebe-46af-83ec-d2b20446f4ee strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054201Z-165bfd566cfvnfldckvfavskxn00000007a000000000duf6 + - 20241106T100238Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001py1b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -773,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A58Z&ske=2024-10-16T12%3A41%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A06Z&sr=b&sp=r&sig=m4r9PNt60OfKMf0GIDanygKnn34%2BYf%2Bz3TKtzN8uTV4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:06.7785695Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A44Z&ske=2024-11-06T17%3A02%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A44Z&sr=b&sp=r&sig=euCxkr3HwNRXRfE3tRIWFUV8wQBlI1Qy47GE2m3jh18%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:44.0596492Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -787,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:06 GMT + - Wed, 06 Nov 2024 10:02:44 GMT mise-correlation-id: - - 94bb713c-50c8-4640-9fb1-a28ae2d55a56 + - 7961929b-c906-4be0-b80e-3c66b4c90d22 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054206Z-17f5d849667qmr9byegk961210000000099g00000000g86v + - 20241106T100243Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pyra x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,54 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A58Z&ske=2024-10-16T12%3A41%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A12Z&sr=b&sp=r&sig=jRTgZccV7g08%2BeXZYsNLbneVWqQfzE6soIy3Xi2eT6A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:12.0904499Z","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 - connection: - - keep-alive - content-length: - - '557' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:12 GMT - mise-correlation-id: - - 0d50ba9d-a741-4e34-96d4-f9f07c0df06c - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054211Z-165bfd566cfwdnp4qpcafa3cc400000005mg000000001sz3 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A58Z&ske=2024-10-16T12%3A41%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A17Z&sr=b&sp=r&sig=GGYw7zLGI6kDyjSKDcucxJf%2FhVHShGFSqnX%2FbA27mlY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:17.454445Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A38Z&ske=2024-11-07T02%3A02%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A49Z&sr=b&sp=r&sig=aPW0VL48J%2F8QWa3XL7IX403zvjLzOAB65eNAuZgvgYI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:49.3721773Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -875,13 +834,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:17 GMT + - Wed, 06 Nov 2024 10:02:49 GMT mise-correlation-id: - - 884d0265-bb6e-476c-9b18-371871ac6215 + - 7dcb71b3-8c93-4a29-a129-a0ae8ec628c2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054217Z-18489d46dcc7qds9rw9wr310dc000000061g00000000e8ce + - 20241106T100249Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001pzfd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A32Z&ske=2024-10-16T21%3A41%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A22Z&sr=b&sp=r&sig=mbeR8lcCj5mBttGqsW2Sa9uFYME2Yz2UwmlQg4ztWlo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:22.807488Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A55Z&sr=b&sp=r&sig=cgtCAP%2FSG2B95gFavSTKuEvdl5ZiZSHtDsjATSkh4tY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:55.1098762Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,59 +872,17 @@ interactions: connection: - keep-alive content-length: - - '554' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:22 GMT - mise-correlation-id: - - f4c94e64-46a2-416c-b1f3-0cb07b3b16da - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054222Z-166cf497cd4r6hmp97992txd7w000000082g00000000087q - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A43Z&ske=2024-10-16T12%3A41%3A43Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A28Z&sr=b&sp=r&sig=jS63ukpInDDZrzH4KMegLl6pNdsStK9hDfvhgko9a7g%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:28.1213331Z","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 - connection: - - keep-alive - content-length: - - '555' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:28 GMT + - Wed, 06 Nov 2024 10:02:55 GMT mise-correlation-id: - - b98c10bc-75b8-4446-a689-fb9c3af73892 + - 7810f900-8f9c-470c-b84a-c79b329d3f50 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054227Z-18489d46dccj85r8e2f8g29m280000000840000000001dg8 + - 20241106T100254Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q082 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A32Z&ske=2024-10-16T21%3A41%3A32Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A33Z&sr=b&sp=r&sig=LjFyl9iSkPdByY2c5wUWAm1v3Boto08xXy7IEMfBZyc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:33.4969361Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A11Z&ske=2024-11-07T02%3A02%3A10Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A00Z&sr=b&sp=r&sig=eSEYCRrp4BHwuqdVLol7aRqMjK%2BLmjCdcsgnyP1FLcE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:00.4285876Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:33 GMT + - Wed, 06 Nov 2024 10:03:00 GMT mise-correlation-id: - - 80a76975-2ea7-40a4-9a7c-2475df51b6da + - d52eeec9-557f-42c2-8ad0-4073eee0aa6c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054233Z-166cf497cd4q6m55tfpt35bu6000000007x0000000003h3y + - 20241106T100300Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q0xp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A01Z&ske=2024-10-16T21%3A42%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A38Z&sr=b&sp=r&sig=dJU9KEv2qMeQoLZcV5OFhieiH1R2gDuvfFTZVW0F8Bk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:38.8978479Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A44Z&ske=2024-11-06T17%3A02%3A44Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A13%3A05Z&sr=b&sp=r&sig=ystlRQLetXz4Jb%2FDNmWwy6dnK9z2gYFGxpBmxRzbZbo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:13:05.7094206Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1039,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '553' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:38 GMT + - Wed, 06 Nov 2024 10:03:05 GMT mise-correlation-id: - - 3b1f173d-fddf-4471-9479-b509ed41f9bb + - a11bacd2-6f76-4b09-b03f-b7c591c62bb6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054238Z-15484bdf4576j5mtr8k4ftgbd400000002v0000000004vpg + - 20241106T100305Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q1qh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,13 +984,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ae32482b-ad04-43f5-b357-52fafdf7e09f":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01e7d313-f335-4025-b8ce-e2cc79b1bfe4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d10990d5-b56c-4c17-b9d2-8e505715112b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A39Z&sr=b&sp=r&sig=C5tkxpPMrTicDGgEmCAXxj0g0WM1rEygbs9w3ljzfqI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:39.2597729Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/1098defd-2452-499f-94f8-352c7d650baf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A39Z&sr=b&sp=r&sig=mcZtj3YLF6WY4mVoCTIqKvNy8yAQGfCKPI9P9GaOdos%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:39.2601588Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A31Z&ske=2024-10-16T12%3A41%3A31Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A39Z&sr=b&sp=r&sig=vXQqVBvWxrSKLJJFZE1YjqmyHI1DpRnDyGgeqp6h%2Fzc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:39.2602657Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:30.506Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:42:35.661Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A05Z&ske=2024-11-07T00%3A03%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A05Z&sr=b&sp=r&sig=glrTAVf9m5b6dbSJXERtMRNr1JWerAQw%2Bs2lhw8EbCE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:05.997969Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A05Z&ske=2024-11-07T00%3A03%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A05Z&sr=b&sp=r&sig=%2ByyrvYpOQjC8P5asSFRF1s0txuPXUsh1AKMsOtpyNvk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:05.9982709Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A05Z&ske=2024-11-07T00%3A03%3A05Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A05Z&sr=b&sp=r&sig=zVqlfnFtoI6CwMfrleI8WSwaOZGPElkJcf8BJjEvAac%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:05.9983621Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:05.469Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1082,17 +999,17 @@ interactions: connection: - keep-alive content-length: - - '2763' + - '2761' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:39 GMT + - Wed, 06 Nov 2024 10:03:06 GMT mise-correlation-id: - - bb4fdd82-c35a-4c90-925e-0986f9e3db38 + - fd7856a7-d71a-4c5d-a840-c7984c4c8034 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054239Z-18489d46dcccphr7hbyy83t0cc00000007u000000000mmyp + - 20241106T100305Z-16bf8d9b4c79v4bbhC1BOMgnfn000000064000000001q1s3 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1110,23 +1027,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:57.6736634Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:57.6736634Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cab6275-b150-4396-8e5a-fc4934b431fe.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":"2024-11-06T10:01:28.2816881Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:28.2816881Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:39 GMT + - Wed, 06 Nov 2024 10:03:07 GMT etag: - - '"c501e579-0000-0200-0000-670f51ff0000"' + - '"fa006c15-0000-0200-0000-672b3e8f0000"' expires: - '-1' pragma: @@ -1142,7 +1059,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B3B17E147350476283E44BB20ED8D425 Ref B: CO6AA3150220029 Ref C: 2024-10-16T05:42:39Z' + - 'Ref A: 8E1187E4B6824AD68C78D21DAC0AD9B8 Ref B: MAA201060514037 Ref C: 2024-11-06T10:03:08Z' status: code: 200 message: OK @@ -1156,13 +1073,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"ae32482b-ad04-43f5-b357-52fafdf7e09f":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01e7d313-f335-4025-b8ce-e2cc79b1bfe4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d10990d5-b56c-4c17-b9d2-8e505715112b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A01Z&ske=2024-10-16T21%3A42%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A40Z&sr=b&sp=r&sig=gY7Stn1hISTJPwXom7jKmYjCyNPX%2FSmH9JR305oRYmM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:40.1204567Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/1098defd-2452-499f-94f8-352c7d650baf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A01Z&ske=2024-10-16T21%3A42%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A40Z&sr=b&sp=r&sig=ol88KVHn35Ey9KZSS%2BXDN0S8Vyb1Hibd4p8fdISaBHA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:40.120742Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A01Z&ske=2024-10-16T21%3A42%3A01Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A40Z&sr=b&sp=r&sig=Ni3TmOe6dORaviqM1csRVhZYtfqB6j6WsLjlGpc8%2BFc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:40.1208284Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:30.506Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:42:35.661Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A10Z&sr=b&sp=r&sig=JmdJkD0lx5PjQrgyOIFq71C1g2qREWcuHRJXpS4v4d0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:10.8438771Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A10Z&sr=b&sp=r&sig=%2Fsi3rGNtvALvKtPWRqMvBvzZ%2B7CP4c%2FrZ9Z8k0zRrhE%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:10.8442233Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A02%3A08Z&ske=2024-11-06T17%3A02%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A10Z&sr=b&sp=r&sig=YvdVQq9X9zo3Mqh9vlVB1u6slboeFSwA4imklpcUD04%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:10.8443744Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:05.469Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1171,17 +1088,17 @@ interactions: connection: - keep-alive content-length: - - '2778' + - '2776' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:40 GMT + - Wed, 06 Nov 2024 10:03:10 GMT mise-correlation-id: - - 95aa2e8b-b266-468a-85b6-236f70f7c911 + - 6dfa7e4b-c763-4b03-bd00-06c5968e623a strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054239Z-18489d46dcccphr7hbyy83t0cc00000007y0000000008gc2 + - 20241106T100310Z-16998b5679fcjr6chC1MAAz5ks00000002b0000000008729 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1199,23 +1116,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:57.6736634Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:57.6736634Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"5cab6275-b150-4396-8e5a-fc4934b431fe.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":"2024-11-06T10:01:28.2816881Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T10:01:28.2816881Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:39 GMT + - Wed, 06 Nov 2024 10:03:12 GMT etag: - - '"c501e579-0000-0200-0000-670f51ff0000"' + - '"fa006c15-0000-0200-0000-672b3e8f0000"' expires: - '-1' pragma: @@ -1231,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B649AB13025C4ECABF8C8082B9913488 Ref B: CO6AA3150220023 Ref C: 2024-10-16T05:42:40Z' + - 'Ref A: C315038C28C0485E848CF6398CBE8F50 Ref B: MAA201060515027 Ref C: 2024-11-06T10:03:13Z' status: code: 200 message: OK @@ -1245,13 +1162,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://5cab6275-b150-4396-8e5a-fc4934b431fe.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview + uri: https://11900ca2-f039-4f16-af5c-253f64f1f34d.eastus.cnt-prod.loadtesting.azure.com/tests/show-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"ae32482b-ad04-43f5-b357-52fafdf7e09f":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"01e7d313-f335-4025-b8ce-e2cc79b1bfe4":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"d10990d5-b56c-4c17-b9d2-8e505715112b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/3cc76f2c-bf56-4e57-81df-f2431dfd424c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A35Z&ske=2024-10-16T19%3A42%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=oIXlHg3unORbkOKmv3uPfAisJMTRdxw%2BuyJxLdJ69Ro%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:42:41.0895449Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/1098defd-2452-499f-94f8-352c7d650baf?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A35Z&ske=2024-10-16T19%3A42%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=Msx7QPcemXDNRs%2B9JLeIiN533ZCFnOgcy4IDwOIA4Is%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:42:41.0898296Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://fjhy360k84o6ugbgepy8ocfa.z1.blob.storage.azure.net/d954030a-c31c-4778-8fd5-0b995498d627/b9e85587-f988-4358-9cca-f04bff9b4615?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A35Z&ske=2024-10-16T19%3A42%3A35Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A42%3A41Z&sr=b&sp=r&sig=lSqy%2BqOMwfCQEh7diEU6LdA7I%2F%2FzPhfOZ9adnV9RsKc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:42:41.0899662Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:30.506Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:42:35.661Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"5fe2fa73-9c21-4ec9-98ef-31eeaa44df43":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"6a765184-5ff7-4196-b081-34219ae29402":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"e0b2c724-de10-453e-bfdf-a77ed518029b":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/06d78f9f-3df5-4abf-9a4d-f2c47cc0a716?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=g7Gesiip%2BHDLKg7U4Z63shx8oYMIG7RiC8EPCJs4YxY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:03:15.305334Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/8ac09fe5-476b-43aa-a029-6df1c2a489fe?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=jYbITY2yObTJY3smS2Ahl4axnldEISbOxmdqMlgekA8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.3309247Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://nlz2cgxjjd823am38g3uaktn.z20.blob.storage.azure.net/4e15de60-5bc1-4658-afc1-fc6ce61acabc/f1fe02bc-29c7-4039-a038-71ef3871b820?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A03%3A15Z&ske=2024-11-06T17%3A03%3A15Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A03%3A15Z&sr=b&sp=r&sig=TIeeXJSEYcCVQgf5HqiGp4DrrwlgGvqi%2FAoYQkoAAqM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:03:15.3310208Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"show-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:02:06.128Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:03:05.469Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1260,17 +1177,17 @@ interactions: connection: - keep-alive content-length: - - '2771' + - '2761' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:41 GMT + - Wed, 06 Nov 2024 10:03:15 GMT mise-correlation-id: - - bb0325e4-0d13-4f6b-9427-0eb2db43dbcf + - ea92ee8a-5ffa-4ff6-b33c-658ca8a724ce strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054240Z-15484bdf45772jkjsy4g2ytrdw00000002yg000000008gxp + - 20241106T100314Z-184f6b5dbd8gv9nrhC1MAAb72400000005sg00000000g899 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 c48479ab9ad..5b624882574 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3470552Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3470552Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da312c52-d49e-4535-bdc2-6826f4dd723b.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":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:07 GMT + - Wed, 06 Nov 2024 09:58:51 GMT etag: - - '"c501e772-0000-0200-0000-670f51730000"' + - '"fa00a409-0000-0200-0000-672b3dce0000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D70952FB175449FFB49D17A7A0A46CE7 Ref B: CO6AA3150217037 Ref C: 2024-10-16T05:39:07Z' + - 'Ref A: 956A30AE4ADD4E7586A0909AA91BF443 Ref B: MAA201060515023 Ref C: 2024-11-06T09:58:50Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:39:09 GMT + - Wed, 06 Nov 2024 09:58:54 GMT mise-correlation-id: - - 351b9c28-0590-4d03-baae-d8cd8632011a + - 37226195-4707-4f7c-b778-b45aa86c9a66 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T053909Z-165bfd566cfq5wbnrgy8qvqxnn00000009n000000000g47v + - 20241106T095853Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rctb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -90,14 +90,15 @@ interactions: message: Not Found - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"rps": 1, "duration_in_sec": "1"}, "secrets": {}, "certificate": null, "loadTestConfiguration": - {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": false}, "passFailCriteria": - {"passFailMetrics": {"5385ea83-56b3-4439-b592-c183f0d15ee9": {"aggregate": "avg", - "clientMetric": "requests_per_sec", "condition": ">", "value": "78"}, "38ff6b8c-6511-49a4-8f3a-098c1851d267": - {"aggregate": "percentage", "clientMetric": "error", "condition": ">", "value": - "50"}, "7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd": {"aggregate": "avg", "clientMetric": - "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"rps": 1, "duration_in_sec": "1"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": false}, "passFailCriteria": {"passFailMetrics": {"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64": + {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": + "78"}, "106d4261-2e0c-40df-8708-2b125bf7066d": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "b7809d0b-40a8-4a6d-986b-946024de1f93": + {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", + "requestName": "GetCustomerDetails"}}}}' headers: Accept: - application/json @@ -106,36 +107,36 @@ interactions: Connection: - keep-alive Content-Length: - - '789' + - '816' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5385ea83-56b3-4439-b592-c183f0d15ee9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"38ff6b8c-6511-49a4-8f3a-098c1851d267":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.045Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:39:10.045Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:58:54.936Z","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 connection: - keep-alive content-length: - - '1052' + - '1046' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:10 GMT + - Wed, 06 Nov 2024 09:58:55 GMT location: - - https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview + - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-03-01-preview mise-correlation-id: - - e0a34e44-154b-4555-9d8d-3e90cd1142a5 + - 5bb8bc7a-78aa-4e26-9472-ef2b0a86a10c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053909Z-17f5d8496677xw98qrdesns90400000008r000000000aa79 + - 20241106T095854Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rcyp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -153,9 +154,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -171,13 +172,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:10 GMT + - Wed, 06 Nov 2024 09:58:55 GMT mise-correlation-id: - - 3912b2ac-3149-418f-acfc-7509318ea11e + - df1ee4ae-6359-47df-ae63-1434fd6ca6c4 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053910Z-17f5d8496676hfvje9tymmm4rw000000077g000000008aqx + - 20241106T095855Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rd1n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -202,33 +203,33 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=fUHCAuQVPgHp6tCaT2r%2FLtYW4T0Tf939KxYEtitvYS4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.6528199Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A57Z&sr=b&sp=r&sig=Pf5W0JUrerFZepL3JIbp%2BCMpoNzawYh2jFyTPjOsdGk%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:57.6993958Z","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 connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 09:58:57 GMT location: - - https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - de5cb88a-a0f5-42c9-95c7-38db614c86be + - 485d0b7d-547c-450b-9b8b-dacd904e4ace strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053910Z-17f5d849667p5mkz7t2q3k9cbn00000006kg0000000072av + - 20241106T095855Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rd31 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -246,12 +247,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A11Z&sr=b&sp=r&sig=fUHCAuQVPgHp6tCaT2r%2FLtYW4T0Tf939KxYEtitvYS4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:49:11.9545938Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A58Z&sr=b&sp=r&sig=BNgUMLNVax8gAFNPR6AeGT6%2BpaOBamMy5lv6nHjPcOY%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:08:58.8911321Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -260,17 +261,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:11 GMT + - Wed, 06 Nov 2024 09:58:58 GMT mise-correlation-id: - - 6919bc58-85fc-4f28-a3f7-23c4b66ac763 + - b348d7ea-d5fd-4c6a-941c-d845653a14a6 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053911Z-165bfd566cfwdnp4qpcafa3cc400000005n0000000000fyr + - 20241106T095857Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rdew x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -299,33 +300,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A12Z&sr=b&sp=r&sig=jAsZkEMLaNNF2nORO8ps%2FsHN6ddKDCkaNu3Zzqp12ec%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:12.3796901Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A08%3A59Z&sr=b&sp=r&sig=YLnFOCUx2fb%2BWUk7TC8rHdMh08KGsGEvpseOhlMvhhg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:08:59.3719082Z","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 connection: - keep-alive content-length: - - '570' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:12 GMT + - Wed, 06 Nov 2024 09:58:59 GMT location: - - https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - a4d26d77-dad8-4262-bbef-d29114c87459 + - cccabe64-005c-4fe3-b238-bc969712920f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053912Z-17f5d849667qg6t9uvfp3m2p2w00000005q00000000074ap + - 20241106T095859Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rdmm x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -343,12 +344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A12Z&sr=b&sp=r&sig=sSXDEb6ylzEZ%2FhWMpBy0qSQ%2BKd2pDCLDyvUoQ%2FQ50Gg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:12.6974644Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A01Z&sr=b&sp=r&sig=4UeV5FQsmfF2lCx3uaM9RDMAnqh%2BQtEhvl%2BxVyRaMEM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:01.3574781Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -357,17 +358,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '571' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:12 GMT + - Wed, 06 Nov 2024 09:59:01 GMT mise-correlation-id: - - b2551c00-ad3a-4d5d-8afc-aec9995d3bb1 + - 84d8ab5d-058d-48cf-ba3d-eb4630bc7888 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053912Z-165bfd566cfwdnp4qpcafa3cc400000005dg00000000c1w4 + - 20241106T095859Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rdqv x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -385,12 +386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A17Z&sr=b&sp=r&sig=EMZzu032AXPX8DjIhzyWrV8Zdp5Gaj5ficr%2FpgE4FaI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:17.980602Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A06Z&sr=b&sp=r&sig=XrXrmVunUclQ%2FMcNwKh96KChwynKSyuEBMxsdvnvUaI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:06.7016616Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -403,13 +404,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:17 GMT + - Wed, 06 Nov 2024 09:59:06 GMT mise-correlation-id: - - 68e4104f-79b7-451a-bb90-092cffc37643 + - 1d6f04bd-6611-4f53-b630-932269eca0d0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053917Z-17f5d849667mcvjp5w9fsbsaug00000007gg0000000071d2 + - 20241106T095906Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rehy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -427,12 +428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A23Z&ske=2024-10-16T12%3A39%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A23Z&sr=b&sp=r&sig=rc4v9kdyi91wKRNkf%2B7aAeP%2BmAn2kIoTdyAhk%2FokqoQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:23.313539Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A12Z&sr=b&sp=r&sig=pMlbTQSrVkBgEuAGXrGQl27bzCWIHrtODAXKM7DZFuU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:12.035551Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -441,17 +442,17 @@ interactions: connection: - keep-alive content-length: - - '573' + - '566' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:23 GMT + - Wed, 06 Nov 2024 09:59:12 GMT mise-correlation-id: - - fbf6153a-e16f-4f08-9adb-575318fc8a1a + - d57d025b-d390-405e-8b61-27ade53a14d7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053923Z-17f5d8496679hzsmtt458u9d04000000089g000000002qwt + - 20241106T095911Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rfd6 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -469,12 +470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A23Z&ske=2024-10-16T12%3A39%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A28Z&sr=b&sp=r&sig=MNUOr7%2FZyX65Fm9jJikqC4K0m2zDFdExcXvbqIuMkYU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:28.617322Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A17Z&sr=b&sp=r&sig=qLuR3C8HOxsgoB%2F1m74r8yr%2F6iJMDukig2bmaPrj%2B%2B8%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:17.3406182Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -483,17 +484,17 @@ interactions: connection: - keep-alive content-length: - - '569' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:28 GMT + - Wed, 06 Nov 2024 09:59:17 GMT mise-correlation-id: - - 2686e9fc-5d87-4f43-b93c-a0428e7c8fc8 + - 281ee4f8-0e59-4ff6-a805-df60b6326341 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053928Z-17f5d849667q42pgsnc7zsyqc400000006pg000000000usa + - 20241106T095917Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rg87 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -511,12 +512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A23Z&ske=2024-10-16T12%3A39%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A34Z&sr=b&sp=r&sig=Azy3pN7OOho6rjs6vMvcyV%2FbDYgeLwozuIBiycKuBjg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:34.547795Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A22Z&sr=b&sp=r&sig=IIxnfi5RBzVuVERib%2FsRpi0RmfKEGZWWkjI%2BgVGRyKY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:09:22.6912069Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -529,55 +530,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:34 GMT + - Wed, 06 Nov 2024 09:59:22 GMT mise-correlation-id: - - 85b91e9b-32dc-4968-9215-2c60d616b133 + - dafb3b8f-7b16-4647-9611-dc11aa1986d3 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053933Z-165bfd566cffhs2674zxz6xayc000000092000000000bb9z - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A39Z&sr=b&sp=r&sig=c72RqSKLJjbiRUDP7PiRm2PiJYl6qSBj8dvVC1J3rSw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:49:39.832725Z","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 - connection: - - keep-alive - content-length: - - '565' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:39 GMT - mise-correlation-id: - - d9d00ef5-e453-4b55-a066-d67adba63acd - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053939Z-17f5d849667qxjvzggu6atsuxc00000008d000000000349u + - 20241106T095922Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rgzw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -687,33 +646,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A41Z&sr=b&sp=r&sig=hztru9xJaOb6mWEqXPW5LJjPMMl6lLv7rFmL8dezAuU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:41.1770331Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A23Z&sr=b&sp=r&sig=Wq9GvA7nE7CDi5GN0nkGNc%2BGN0Vd490CQcWn7d%2B6c1o%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:23.1445723Z","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 connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:41 GMT + - Wed, 06 Nov 2024 09:59:23 GMT location: - - https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - cc2def1c-9c85-47a5-b149-8d95fcc896f6 + - bd2ebac8-aadc-41a0-aabc-e0fcb661710d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053939Z-17f5d849667b4k641769x7f50c00000004e000000000ah41 + - 20241106T095922Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rh22 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -731,54 +690,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A41Z&sr=b&sp=r&sig=hztru9xJaOb6mWEqXPW5LJjPMMl6lLv7rFmL8dezAuU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:41.5250274Z","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 - connection: - - keep-alive - content-length: - - '556' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:41 GMT - mise-correlation-id: - - 730941e7-98e8-49d6-a9f0-1faf55dca3c5 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053941Z-17f5d8496676mhmt5p9sr0x1bc00000008q0000000007hrd - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A46Z&sr=b&sp=r&sig=r8wvYIICSV66RC5KCHcZo3PqcUFu146PTvUDX9JGtbU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:46.7002756Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A23Z&sr=b&sp=r&sig=Y5D7A950ETzH8XSdb05znXzXEXD9hlgHJvii5nZu7FE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:23.5510391Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -787,17 +704,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:46 GMT + - Wed, 06 Nov 2024 09:59:23 GMT mise-correlation-id: - - 02e90422-c0ed-421b-9e34-9560c91ecb99 + - 7fa7a1d6-17cc-4450-8b0a-3b31b9eaba9f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053946Z-17f5d8496676bkwfhshcac428800000008eg00000000cf33 + - 20241106T095923Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rh48 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -815,54 +732,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A52Z&sr=b&sp=r&sig=A61w6D3QgUXh5QQ%2BXU8kNmcjlqoj5AfsSrhazhpUmoA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:52.0395286Z","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 - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:39:52 GMT - mise-correlation-id: - - 4e9cdeca-e032-4da4-a079-a302b21ed0fc - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T053951Z-17f5d8496676hfvje9tymmm4rw00000007b0000000001m1n - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A49%3A57Z&sr=b&sp=r&sig=KPJG5IjocZYmnl5KCwo1XvIF6cu6zxrcMX%2BzWpKRLJM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:49:57.359577Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A29Z&sr=b&sp=r&sig=YXkRjZKBsC69ELsa746BjhjGYEFa3Y7JGuXlnWkJ%2FDQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:29.0176469Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -875,13 +750,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:39:57 GMT + - Wed, 06 Nov 2024 09:59:29 GMT mise-correlation-id: - - b75ee8f0-91c3-4bfc-a263-fc50c6a5057e + - 5f5b6ca0-1692-4185-b9a6-60102d096e40 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T053957Z-165bfd566cfz6tr4stm33d094000000005k0000000008eu0 + - 20241106T095928Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rhyp x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,12 +774,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A03Z&sr=b&sp=r&sig=6nbjmmfZ18foeOYimouq3PfOh1rNmWqR99xQc356FtM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:03.4841516Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A34Z&sr=b&sp=r&sig=9BAjKWp0L8gINKTPv6V5YlZOJv59WHPUWLZtC8tjsFs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:34.3221088Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -913,17 +788,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:03 GMT + - Wed, 06 Nov 2024 09:59:34 GMT mise-correlation-id: - - 552aed39-50f2-46d4-9f9c-090da13d4221 + - 6f545cff-12f0-44d9-8051-63c0fa0a7b0d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054002Z-165bfd566cftt5pk5sesfc5t6w00000005vg00000000e5wa + - 20241106T095934Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rkrb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -941,12 +816,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A08Z&ske=2024-10-16T12%3A40%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A08Z&sr=b&sp=r&sig=hOdV85WdK1oDYj660DYMQdmvakUDFPvLIsTmc5ZnXgk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:08.8414701Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A40Z&sr=b&sp=r&sig=%2B1Lhm1B4%2FJwwQJFqBXylHgXvx5rf74rea5SotshDBQo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:40.6100205Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -955,17 +830,17 @@ interactions: connection: - keep-alive content-length: - - '556' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:08 GMT + - Wed, 06 Nov 2024 09:59:40 GMT mise-correlation-id: - - ef469b53-711b-45dc-bd0d-9fe5d8db0d9c + - fe394dea-8429-4709-a8db-2c316c81844d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054008Z-165bfd566cf4ghtzyebch8wysc00000004q0000000005wcf + - 20241106T095939Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rmeu x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -983,12 +858,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A14Z&sr=b&sp=r&sig=KonuhYE%2Bt%2B79hCkIUzpkYnERC8ivjySM0%2BvXmSkNofc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:14.1986961Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A06Z&ske=2024-11-06T16%3A59%3A06Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A45Z&sr=b&sp=r&sig=AUeaBRn4R7AlsyE9hhruOgOw0uLkiuJQiA83McpZyVg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:45.9318742Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -997,17 +872,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:14 GMT + - Wed, 06 Nov 2024 09:59:46 GMT mise-correlation-id: - - bb5a9b06-7ca8-468d-a471-3053085fcd92 + - 33099edb-8567-492e-a99d-b73b80ddce47 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054013Z-18489d46dccp2df8e3m20gzz8w00000007t000000000f9ga + - 20241106T095945Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rnax x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1025,12 +900,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A19Z&sr=b&sp=r&sig=de%2BgdZN9jeLBXtvgDogPqi6ctoGMXVb%2FMR%2FQbyZqG9E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:19.5410856Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A51Z&sr=b&sp=r&sig=Ro%2FFwF%2FtFEaDdZ8TAqSeE78feBHiPDBEJYJYTElxcPY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:51.2610127Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1039,17 +914,17 @@ interactions: connection: - keep-alive content-length: - - '562' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:19 GMT + - Wed, 06 Nov 2024 09:59:51 GMT mise-correlation-id: - - f8526da2-0fb6-47d4-913e-6ffbae200bcf + - 2c71e2ce-a782-4786-abb8-a23569afe671 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054019Z-166cf497cd47w9bdc501r87meg00000004g0000000005b9x + - 20241106T095951Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rp2k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1067,12 +942,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A24Z&sr=b&sp=r&sig=qRLLmROc%2B%2FODDURpKCHf5cIf2YWqG%2FmbHd6Urp0RpsM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:24.717118Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A09%3A56Z&sr=b&sp=r&sig=fhovrzJLQ69cOPzl8eEnK%2FWeGAyEvzZTIBcLi2%2F9CN8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:09:56.541564Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1081,17 +956,17 @@ interactions: connection: - keep-alive content-length: - - '559' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:24 GMT + - Wed, 06 Nov 2024 09:59:56 GMT mise-correlation-id: - - c019350e-4c9f-4133-82f5-394d151b041b + - 54856d21-2e9b-4fed-8917-e851778a4b76 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054024Z-18489d46dccp2df8e3m20gzz8w00000007t000000000f9w8 + - 20241106T095956Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rpte x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1109,13 +984,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5385ea83-56b3-4439-b592-c183f0d15ee9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"38ff6b8c-6511-49a4-8f3a-098c1851d267":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A25Z&sr=b&sp=r&sig=YJOiAxC%2FStvFbjuyG5jRBfRNBYRux5xlWyEYPxPIJd8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:25.0646158Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A25Z&sr=b&sp=r&sig=hZDMvuyL6OkmjO6v37Gh7kAaz4ZWKWnyTsKQXzQapfw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:25.0650272Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T21%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A25Z&sr=b&sp=r&sig=4%2F6LwzH%2F4qFaOfgDNUBsQxXbmRhPzghY4of8zKvyrFM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:25.0651617Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.045Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:19.984Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A56Z&sr=b&sp=r&sig=9yM6HrKWXlzdVB62ysm%2Fl8BNrAGJP7xQV5U2sxTRrSo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:59:56.8796592Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A56Z&sr=b&sp=r&sig=YO%2FH%2FKDFWJbTeELfWGFw5yUaanGG0VpYP6ZD8wQuVSc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:59:56.8799809Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A59%3A56Z&sr=b&sp=r&sig=4cFQefpe3NNgFvL8He%2BWg7u4kuWSLtx2Z4R1AkMuxk4%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:59:56.8800997Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:54.525Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1124,17 +999,17 @@ interactions: connection: - keep-alive content-length: - - '2772' + - '2765' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:25 GMT + - Wed, 06 Nov 2024 09:59:57 GMT mise-correlation-id: - - bc59fd76-74eb-478c-affe-dd55feb89dfb + - d1b7c9c6-0e46-4b22-b2f0-dad9ac5d21e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054024Z-15484bdf45782nr6fa3f22900400000002hg0000000037bx + - 20241106T095956Z-16bf8d9b4c7hxwq4hC1BOM82c4000000062000000001rpuy x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1152,23 +1027,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3470552Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3470552Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da312c52-d49e-4535-bdc2-6826f4dd723b.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":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:24 GMT + - Wed, 06 Nov 2024 09:59:58 GMT etag: - - '"c501e772-0000-0200-0000-670f51730000"' + - '"fa00a409-0000-0200-0000-672b3dce0000"' expires: - '-1' pragma: @@ -1184,7 +1059,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 065B7C0AA60A4233B1EC181112A440FD Ref B: CO6AA3150217035 Ref C: 2024-10-16T05:40:25Z' + - 'Ref A: C4A6DD84AFD14D96A9A66ED671FA2C41 Ref B: MAA201060516029 Ref C: 2024-11-06T09:59:58Z' status: code: 200 message: OK @@ -1198,13 +1073,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests?api-version=2024-05-01-preview response: body: - string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"5385ea83-56b3-4439-b592-c183f0d15ee9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"38ff6b8c-6511-49a4-8f3a-098c1851d267":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A26Z&sr=b&sp=r&sig=DV4qaa%2FpuDLE3GPSNuRTe3VIKkJYkxrrYnfuRFtKBZE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:26.5510744Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A26Z&sr=b&sp=r&sig=dpryT5PADSUAfhJCYrRAHf7UPeKh3iVnbT4cHkEj4zs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:26.5513371Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A26Z&sr=b&sp=r&sig=vSDiBrSaYBg9v7quPZT9cgbTq6VfERWYm7CULf6CXfU%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:26.5514492Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.045Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:19.984Z","lastModifiedBy":"mbhardwaj@microsoft.com"}]}' + string: '{"value":[{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A02Z&sr=b&sp=r&sig=B57YL339aj9x0r5BuIzMhzeTkArgGxXuJSuPfxfAhNw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:02.1522067Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A02Z&sr=b&sp=r&sig=VLdmmAyXNbJ%2FON5uZkzo%2B30G6fNXc5NEWSplZYp%2F5Hs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:02.1524759Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A58Z&ske=2024-11-06T16%3A58%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A02Z&sr=b&sp=r&sig=5Wclqlhu82U4XStuLl7GiVczgOpbk%2BDqJVBvswY0PyM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:02.152535Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:54.525Z","lastModifiedBy":"hbisht@microsoft.com"}]}' headers: accept-ranges: - bytes @@ -1213,17 +1088,17 @@ interactions: connection: - keep-alive content-length: - - '2780' + - '2776' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:26 GMT + - Wed, 06 Nov 2024 10:00:02 GMT mise-correlation-id: - - cc8da092-c48e-48af-9d79-754cb6004213 + - 069d1683-2477-4ba2-966a-ec488e556ed8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054025Z-18489d46dccgwx6cyqev009zy000000007wg0000000001tw + - 20241106T100001Z-184f6b5dbd84nd2shC1MAAk09g000000060000000000092k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1241,23 +1116,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3470552Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3470552Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da312c52-d49e-4535-bdc2-6826f4dd723b.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":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:26 GMT + - Wed, 06 Nov 2024 10:00:04 GMT etag: - - '"c501e772-0000-0200-0000-670f51730000"' + - '"fa00a409-0000-0200-0000-672b3dce0000"' expires: - '-1' pragma: @@ -1273,7 +1148,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7F93D80CB09645CB9349E5A5FA32BDE6 Ref B: CO6AA3150218021 Ref C: 2024-10-16T05:40:27Z' + - 'Ref A: 2FE336E22A104A778E047548303850EC Ref B: MAA201060515035 Ref C: 2024-11-06T10:00:03Z' status: code: 200 message: OK @@ -1287,13 +1162,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5385ea83-56b3-4439-b592-c183f0d15ee9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"38ff6b8c-6511-49a4-8f3a-098c1851d267":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A27Z&sr=b&sp=r&sig=cOYL2AeoUSLu%2F%2FYmuX7kb97s%2FPLbgu3aB%2FToL%2BDo1pc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:27.5843524Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A27Z&sr=b&sp=r&sig=S7YZfmvBVgSJh8lAlvJgm1gx99PNfusgGykBr9rcfQA%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:27.5847879Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A11Z&ske=2024-10-16T12%3A39%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A27Z&sr=b&sp=r&sig=Ljfub9bCXUcF0mjWc9vGu4QW7nghUZjYxAvzzToauRI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:27.5849806Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.045Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:19.984Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A06Z&sr=b&sp=r&sig=ktEopDfuebjfMsQGMnIplJaRW4WQTfWfZ8nLBW1t6yQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:06.9413719Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A06Z&sr=b&sp=r&sig=2BJJzNgU0Zk1IAJJrYJVfthaLA%2B4KxEghCAtHDOf2Vo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:06.9415629Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A06Z&sr=b&sp=r&sig=GAEX4Cbmie7O29VlEFDwhrsglcn0xOSXisVpj2gfYfc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:06.9416142Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T09:59:54.525Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1302,17 +1177,17 @@ interactions: connection: - keep-alive content-length: - - '2776' + - '2759' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:27 GMT + - Wed, 06 Nov 2024 10:00:07 GMT mise-correlation-id: - - 6d840eab-73c4-4e89-b24a-fafb38981a3f + - 7393323e-bf4c-4a4f-88e7-5c8d9c59fd57 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054027Z-166cf497cd48w6x2zuxa69f51n00000007yg00000000apu0 + - 20241106T100006Z-16998b5679f9f5c4hC1MAA989n00000005vg000000008907 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1337,13 +1212,13 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5385ea83-56b3-4439-b592-c183f0d15ee9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"38ff6b8c-6511-49a4-8f3a-098c1851d267":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A28Z&sr=b&sp=r&sig=FjKGujNcvjMb7ku6imep6LErTJV1%2B9TnWXhXLF0gYCQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:28.0199681Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A28Z&sr=b&sp=r&sig=bCDRN56tLTChiFNziobbAMY2jKqsoK1aCasj%2FEJQJRQ%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:28.0201441Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A28Z&sr=b&sp=r&sig=J2rF2Ubv0vCUPgdvRnnsTxJoC8u2b%2FC3t%2FwNYq5%2FGQM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:28.0202107Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.045Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:28.011Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A07Z&sr=b&sp=r&sig=q3m3Sk1wPrvLrBQco2YoVDgRNnjrcbz5MZ1FKswu2lg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:07.3698665Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A07Z&sr=b&sp=r&sig=ukVM1yQiJ0vLnZBPNvup9iGBQPBJTIl%2BAHwgU9ijVto%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:07.3703071Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A57Z&ske=2024-11-06T16%3A58%3A57Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A07Z&sr=b&sp=r&sig=hxPArEu7KEWF6GcamgKtHynNZbo4HoOiakrPDjp1Izo%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:07.3705202Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:07.36Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1352,17 +1227,17 @@ interactions: connection: - keep-alive content-length: - - '2777' + - '2759' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:27 GMT + - Wed, 06 Nov 2024 10:00:07 GMT mise-correlation-id: - - 674d40db-d3ad-4498-9831-1ecfb7a743c7 + - 37581f58-4ea6-485d-8fc4-0c8e54b26750 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054027Z-166cf497cd4v8snbtm724w4g2c000000080000000000ctp8 + - 20241106T100007Z-16998b5679f9f5c4hC1MAA989n00000005vg00000000890m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1380,12 +1255,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A28Z&sr=b&sp=r&sig=iTchUNxGx1xc431VbgJ1oTENTuOmJ3lwsoFjIujGnMU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:50:28.3379124Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A28Z&sr=b&sp=r&sig=yPRuWcEibRukVn7n8U5OtI7j%2FjlOlpCT7LjniL7Q4Aw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:50:28.3380042Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A12Z&ske=2024-10-16T12%3A39%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A50%3A28Z&sr=b&sp=r&sig=TADrFtfXes9HUBv%2Bdm9r2AItyEIJ3WB%2FiidgAi9%2BFVI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:50:28.3380935Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A07Z&sr=b&sp=r&sig=UR6Qg3ZKEr8XSsAQPxQwxbR80SLwdVJ8E2CHi1ebUbw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:07.6591693Z","validationStatus":"VALIDATION_SUCCESS"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A07Z&sr=b&sp=r&sig=zDUFYZKcqSeJSRz0GhgsIaWIMKRSUU9jbwKzd%2Fqhyuo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:10:07.6592776Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A58%3A59Z&ske=2024-11-07T01%3A58%3A59Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A07Z&sr=b&sp=r&sig=QkvRcoFy2XT1hJnuulf0KWYn8ZsEXAwARTPJ11BKP8g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:10:07.6593716Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -1394,17 +1269,17 @@ interactions: connection: - keep-alive content-length: - - '1713' + - '1704' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:28 GMT + - Wed, 06 Nov 2024 10:00:07 GMT mise-correlation-id: - - 4ca39835-5b2a-4159-912f-eddfb2faacb1 + - 7ccceb35-d039-4c2f-8558-c425059c238c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054028Z-166cf497cd4jdw4g4y9hv6ku6n00000007sg00000000h6sa + - 20241106T100007Z-16998b5679f9f5c4hC1MAA989n00000005vg000000008912 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1422,13 +1297,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5385ea83-56b3-4439-b592-c183f0d15ee9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"38ff6b8c-6511-49a4-8f3a-098c1851d267":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A28Z&sr=b&sp=r&sig=7fSqoW7VftCpRsJOGFaSCiaylfLGVOCSMt9IeqfV53k%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:28.5591532Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A28Z&sr=b&sp=r&sig=yqjtDlOXfHDMyIpe6fFCWlyO%2FxR11fnRFe%2FMnhhgDJ8%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:28.5595193Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A39%3A41Z&ske=2024-10-16T21%3A39%3A41Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A28Z&sr=b&sp=r&sig=PDf%2F%2F0Ou5wnngt4TgC56ZmPdadmGfW3PwSxco464BMk%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:28.559653Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.045Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:28.011Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A08Z&sr=b&sp=r&sig=%2BC8j6a5UuPasFLWunE%2Bbhh39HuqJGrZOaydEZPi%2BL%2B8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:08.0487769Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A08Z&sr=b&sp=r&sig=nXzcY3yKxJ2yCFsyVMbkjVh5S51K%2B2j4qsRmfRvsyYI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:08.0492309Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A39Z&ske=2024-11-06T16%3A59%3A39Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A08Z&sr=b&sp=r&sig=O2jAd%2FxNFghO9x%2B3n%2FoVqSkzNcPsDRxAj7uRatsxw%2Bc%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:08.0494218Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:07.36Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1437,17 +1312,17 @@ interactions: connection: - keep-alive content-length: - - '2774' + - '2775' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:28 GMT + - Wed, 06 Nov 2024 10:00:08 GMT mise-correlation-id: - - 541baffe-af82-4d25-9159-3f0c293b6ea4 + - 6532509b-613f-4c4c-92ea-76d19ea39c67 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054028Z-18489d46dccj85r8e2f8g29m2800000007x000000000n1rd + - 20241106T100007Z-16998b5679f9f5c4hC1MAA989n00000005vg00000000891c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1465,23 +1340,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3470552Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3470552Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da312c52-d49e-4535-bdc2-6826f4dd723b.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":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:28 GMT + - Wed, 06 Nov 2024 10:00:10 GMT etag: - - '"c501e772-0000-0200-0000-670f51730000"' + - '"fa00a409-0000-0200-0000-672b3dce0000"' expires: - '-1' pragma: @@ -1497,7 +1372,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E07967E6C4A0479B9F450411F80EA680 Ref B: CO6AA3150220031 Ref C: 2024-10-16T05:40:28Z' + - 'Ref A: 83815F223E38453995B2DF27CCC6A48F Ref B: MAA201060514047 Ref C: 2024-11-06T10:00:10Z' status: code: 200 message: OK @@ -1511,13 +1386,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/update-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"5385ea83-56b3-4439-b592-c183f0d15ee9":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"38ff6b8c-6511-49a4-8f3a-098c1851d267":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"7f78076f-eb1d-4b8d-a5b3-d4a361a7c3cd":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/62a9c2c9-b79c-4a56-b554-ca2851156d3d?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A08Z&ske=2024-10-16T12%3A40%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A29Z&sr=b&sp=r&sig=3AsHrtor3fdGdv%2F%2FeZNhIx7DN%2FtAwCChQLAmVmU%2BJ0s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:40:29.5248013Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/bfd11521-0999-4bed-9fd8-9060802337a3?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A08Z&ske=2024-10-16T12%3A40%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A29Z&sr=b&sp=r&sig=bge54TQK9P2KbtOvKmeZHE9HWJeXs3CqhI7biY23qD4%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:40:29.5252936Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://gl6ywjcer15o9d0trezpguby.z36.blob.storage.azure.net/86b3d3e8-b778-49d8-924d-2e803e7ed66e/d1dad218-2954-4948-96cc-e0d40c82bd08?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A40%3A08Z&ske=2024-10-16T12%3A40%3A08Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A40%3A29Z&sr=b&sp=r&sig=zWv5rA1gQHsthTzZ9tX8lO21SB1cq0dRvVEq1wUtO18%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:40:29.5253861Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:39:10.045Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:40:28.011Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"a8cdd60f-fbdb-434e-9e0a-4f4a737e5c64":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"106d4261-2e0c-40df-8708-2b125bf7066d":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"b7809d0b-40a8-4a6d-986b-946024de1f93":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","duration_in_sec":"1"},"loadTestConfiguration":{"engineInstances":11,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/873ff70a-94e1-400d-91f4-5bb96717c747?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A13Z&sr=b&sp=r&sig=7PqckZQ4ZbLHQBxubTX7amhQ2l3muQFUW4an%2FjvZYr0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:00:13.1062098Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/8c68b5b2-8892-47b5-a8b7-82202fbc3991?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A13Z&sr=b&sp=r&sig=IsPoLPVHbGFNkccSCANdUpoAVdx56K0MuKRFwh4znNI%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:00:13.106453Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://hpnc43f0slz6rbsvb1rqg020.z6.blob.storage.azure.net/96836bc4-1adb-4fe6-af23-e10f9331c2ab/9b9c64c2-dcb0-4c60-a44e-a4d7c4d1e817?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T09%3A59%3A00Z&ske=2024-11-06T16%3A59%3A00Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A00%3A13Z&sr=b&sp=r&sig=ha9ZWt7zKq5fds59GpPLeaq6Pfx9LmAlPorlUsuUXkI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:00:13.1065239Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T09:58:54.936Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:07.36Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1526,17 +1401,17 @@ interactions: connection: - keep-alive content-length: - - '2775' + - '2758' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:29 GMT + - Wed, 06 Nov 2024 10:00:13 GMT mise-correlation-id: - - d4969197-c0a9-4e1f-a626-e9f9bdf221a3 + - cbbd65d2-9bea-4198-b282-a5a6284d3543 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054029Z-166cf497cd4q6m55tfpt35bu6000000007ug000000009p57 + - 20241106T100012Z-184f6b5dbd8rh8gjhC1MAAahmc00000005v000000000g42e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1554,23 +1429,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:38:34.3470552Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:38:34.3470552Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"da312c52-d49e-4535-bdc2-6826f4dd723b.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":"2024-11-06T09:58:12.0994412Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:58:12.0994412Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:40:29 GMT + - Wed, 06 Nov 2024 10:00:15 GMT etag: - - '"c501e772-0000-0200-0000-670f51730000"' + - '"fa00a409-0000-0200-0000-672b3dce0000"' expires: - '-1' pragma: @@ -1586,7 +1461,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E68EE6DBF3974FB8B4428E3148D5A80D Ref B: CO6AA3150220029 Ref C: 2024-10-16T05:40:29Z' + - 'Ref A: 99A1735B153A4A329D780354E4A9FC2B Ref B: MAA201060513053 Ref C: 2024-11-06T10:00:15Z' status: code: 200 message: OK @@ -1600,9 +1475,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://da312c52-d49e-4535-bdc2-6826f4dd723b.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-update-test-case?api-version=2024-05-01-preview + uri: https://b09a7617-3a07-45f8-9c6a-d422308008b2.eastus.cnt-prod.loadtesting.azure.com/tests/invalid-update-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -1615,15 +1490,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:40:30 GMT + - Wed, 06 Nov 2024 10:00:17 GMT mise-correlation-id: - - a5cde79f-5ad0-47e5-9ad1-06ced29ba0f3 + - ee7e1c72-e436-4e48-b5f7-1e99bc693470 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054030Z-166cf497cd4g2mz5b71exmq12g00000002fg00000000kc2y + - 20241106T100017Z-184f6b5dbd8rh8gjhC1MAAahmc000000061g00000000163g 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 95f985fe2b8..60ef440a96a 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 @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:35.5049611Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:35.5049611Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"90d99d9d-32f1-467a-b03b-7ce1d1d7e389.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":"2024-11-06T09:59:58.6992937Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:59:58.6992937Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:09 GMT + - Wed, 06 Nov 2024 10:00:34 GMT etag: - - '"c5019a78-0000-0200-0000-670f51ea0000"' + - '"fa003b0d-0000-0200-0000-672b3e350000"' expires: - '-1' pragma: @@ -41,7 +41,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4519CE687E6F45358CDB1343E9C8384B Ref B: CO6AA3150219047 Ref C: 2024-10-16T05:41:07Z' + - 'Ref A: 712C36B9A22C49898D12F9289BB51A44 Ref B: MAA201060513017 Ref C: 2024-11-06T10:00:34Z' status: code: 200 message: OK @@ -55,9 +55,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: string: '{"error":{"code":"TestNotFound","message":"Test couldn''t find with @@ -70,15 +70,15 @@ interactions: content-type: - application/json date: - - Wed, 16 Oct 2024 05:41:11 GMT + - Wed, 06 Nov 2024 10:00:37 GMT mise-correlation-id: - - bb5eed85-f521-4dc4-a41f-9656c7dc2327 + - 39291a0e-3681-44dd-ab64-0323c691faf2 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: - chunked x-azure-ref: - - 20241016T054110Z-17f5d849667qmr9byegk96121000000009a000000000ceks + - 20241106T100036Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000366b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -105,32 +105,32 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"additionalFileInfo":[]},"kind":"URL","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:11.503Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:11.503Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:00:37.803Z","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 connection: - keep-alive content-length: - - '575' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:11 GMT + - Wed, 06 Nov 2024 10:00:37 GMT location: - - https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-03-01-preview + - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-03-01-preview mise-correlation-id: - - 3e500142-1b77-4dbd-9d1d-4763057655e5 + - 56bdb9c4-52d7-4dbe-9d8f-f728db169c7d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054111Z-165bfd566cf4c8jp0vyu991gv400000005p000000000asmh + - 20241106T100037Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000369p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -148,9 +148,9 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview response: body: string: '{"value":[]}' @@ -166,13 +166,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:11 GMT + - Wed, 06 Nov 2024 10:00:39 GMT mise-correlation-id: - - 0524f44a-4bd1-452c-8f7c-9fd3acfabc5d + - 27e489e8-1ac9-4c15-8db7-7855d97967e0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054111Z-17f5d8496676bkwfhshcac428800000008n0000000001r2w + - 20241106T100037Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000036bt x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -282,33 +282,33 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A12Z&sr=b&sp=r&sig=KgY%2BtseZc58OBJoCpYREElD1CyOdZjePJgQc72dSAN4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:12.6016379Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-07T02%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A40Z&sr=b&sp=r&sig=us318NIkamcGRlMzShAo7s2sdQRH7eg3TsUrHHjfu4s%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:40.3247638Z","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 connection: - keep-alive content-length: - - '558' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:12 GMT + - Wed, 06 Nov 2024 10:00:40 GMT location: - - https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - ac9a5f4c-49a5-469c-8ed5-c74937306f27 + - da6d94a6-2a8b-4676-938f-6d419f402d1b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054112Z-17f5d849667tvht4m3rc1u623400000008qg00000000gmy3 + - 20241106T100039Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000036pd x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -326,12 +326,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A12Z&sr=b&sp=r&sig=KgY%2BtseZc58OBJoCpYREElD1CyOdZjePJgQc72dSAN4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:12.8889392Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A40Z&sr=b&sp=r&sig=lfOuMSBoCSXXWkFtZ7%2BSJXZJuUGE1vgXV%2FwDhxrHTXA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:40.765645Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -340,17 +340,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '559' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:12 GMT + - Wed, 06 Nov 2024 10:00:40 GMT mise-correlation-id: - - 029def0b-ed02-46e0-b522-0ab1c2b8df98 + - e4ba7879-4cf9-41f0-9324-23e07f854ea2 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054112Z-17f5d849667dlw8817rng82bvc00000006c00000000059xx + - 20241106T100040Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000036sf x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -368,12 +368,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A18Z&ske=2024-10-16T12%3A41%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A18Z&sr=b&sp=r&sig=HUiLFmYg2NWU%2Bci98Drg5b2Mz0i%2BiSw7rN3z45DDLK8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:18.2084621Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A46Z&ske=2024-11-06T17%3A00%3A46Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A46Z&sr=b&sp=r&sig=haNU2qRxCpt9wL5fHoclUpwJu%2BaR20aD4A4apw79IRM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:46.1596938Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -382,59 +382,17 @@ interactions: connection: - keep-alive content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:41:18 GMT - mise-correlation-id: - - 2d473993-817c-4e2f-acec-8993c2d48465 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054117Z-165bfd566cf626cbrvmzsprhfs000000072g0000000039d5 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A23Z&sr=b&sp=r&sig=m2Y0Bh9BRHZbpHO3SY6lMbDZfJjpAScXloeql6qouUQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:23.6079315Z","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 - connection: - - keep-alive - content-length: - - '556' + - '558' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:23 GMT + - Wed, 06 Nov 2024 10:00:46 GMT mise-correlation-id: - - e6b7dcb0-baf2-4fa0-96c3-b41778c660c7 + - 782bf921-cc63-420a-b57a-0c413f4174c8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054123Z-18489d46dccd6w2hyw4dcpanpw00000008000000000066f3 + - 20241106T100046Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k00000000037g4 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -452,12 +410,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A18Z&ske=2024-10-16T12%3A41%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A28Z&sr=b&sp=r&sig=XzsFYtnbulw08bZu7br3bz3B6Qbld6WyZOizYhWZa1A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:28.775482Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A51Z&ske=2024-11-06T17%3A00%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A52Z&sr=b&sp=r&sig=9xzqBXAoea3wDEXWfs%2BlAoMImIvmMcKQxgSb%2FklNENI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:52.6210397Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -466,17 +424,17 @@ interactions: connection: - keep-alive content-length: - - '555' + - '560' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:28 GMT + - Wed, 06 Nov 2024 10:00:52 GMT mise-correlation-id: - - 99af374a-c562-4952-a2ad-2feaccdc619d + - e278d7c2-5892-42b8-945b-4a97f39c3193 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054128Z-166cf497cd4r6hmp97992txd7w00000007wg00000000d11w + - 20241106T100051Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000385r x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -494,12 +452,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A18Z&ske=2024-10-16T12%3A41%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A34Z&sr=b&sp=r&sig=MmoBIzL427L0yHScLmBvJImtISP70yandbB%2FKIje8rA%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:34.1539362Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A10%3A59Z&sr=b&sp=r&sig=peYwJvIaQ8xcU4AAtDMHHSIPdc6V94EUgO%2FQs8nIMGo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:10:59.3996897Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -512,13 +470,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:34 GMT + - Wed, 06 Nov 2024 10:00:59 GMT mise-correlation-id: - - e505b400-bc19-4a03-acac-df4eac6f1cd8 + - b2e1406e-7d84-44bd-9905-c116bfe62c2b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054133Z-166cf497cd48w6x2zuxa69f51n00000007wg00000000fgry + - 20241106T100057Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k000000000392p x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -536,54 +494,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A18Z&ske=2024-10-16T12%3A41%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A39Z&sr=b&sp=r&sig=03sYwHewfaAbmcRSmKf2o3Z5dDUqIBMOQmYBhN2Lkqg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:39.552745Z","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 - connection: - - keep-alive - content-length: - - '555' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:41:39 GMT - mise-correlation-id: - - a0135eba-82b9-43f4-b7bf-dd136a5f4eb3 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054139Z-15484bdf45782nr6fa3f22900400000002eg00000000b599 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A44Z&sr=b&sp=r&sig=T%2Boygll2H7ekZZnSQIilvmMnJUE0xQ8iQRRpanof%2BJM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:44.8850027Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A04Z&sr=b&sp=r&sig=fJ6e6oRhcV6V3%2FqhocwUmiFVC%2BVgVaJDQsI0%2B15CPkE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:04.7858525Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -596,55 +512,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:44 GMT - mise-correlation-id: - - 72b4b3ef-9556-4bf0-9c60-1cc4265f0bc2 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054144Z-18489d46dccnnh2b19wcyx7sm0000000080g000000004gm4 - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A47Z&ske=2024-10-16T19%3A41%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A50Z&sr=b&sp=r&sig=o0wBPAivX3vliQd%2FatmjXxKbx8VJP91lhCVAhVXdz%2F0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:50.2488211Z","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 - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:41:50 GMT + - Wed, 06 Nov 2024 10:01:04 GMT mise-correlation-id: - - 12ff4908-bb0a-47a5-8ad3-9cdc071366af + - 8d21102d-b236-4d2a-9fcb-83d4a1e8ffb8 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054149Z-166cf497cd4z69dq84z53rfxzw000000051g000000006g2k + - 20241106T100104Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k0000000003a89 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -662,13 +536,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A50Z&sr=b&sp=r&sig=01ua7WkbHjOJ6DgHpus9QFxRlK4JBvJGiQsk6u03jhw%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:50.5628601Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:11.503Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:47.728Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A51Z&ske=2024-11-06T17%3A00%3A51Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A01%3A05Z&sr=b&sp=r&sig=%2FkLiQU2cmVIAbP1r2VQLQXAmATQINY6vLRS2NjorQaI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:01:05.0784522Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:01:03.579Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -677,17 +551,17 @@ interactions: connection: - keep-alive content-length: - - '1151' + - '1147' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:50 GMT + - Wed, 06 Nov 2024 10:01:05 GMT mise-correlation-id: - - 0688ca58-3d6e-4c7e-975e-b6eb9916f15f + - 8a03b195-190c-4558-a123-0d8d45ee2bd0 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054150Z-166cf497cd4txcnh6qkkc4ez8n0000000800000000007mwg + - 20241106T100104Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006k0000000003a9v x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -705,23 +579,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:35.5049611Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:35.5049611Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"90d99d9d-32f1-467a-b03b-7ce1d1d7e389.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":"2024-11-06T09:59:58.6992937Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:59:58.6992937Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:50 GMT + - Wed, 06 Nov 2024 10:01:08 GMT etag: - - '"c5019a78-0000-0200-0000-670f51ea0000"' + - '"fa003b0d-0000-0200-0000-672b3e350000"' expires: - '-1' pragma: @@ -737,7 +611,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 55187F9DA8BB48DC922B0E94B84FEA16 Ref B: CO6AA3150218021 Ref C: 2024-10-16T05:41:50Z' + - 'Ref A: 4F141484421A422DBAFE01F113F3C40D Ref B: MAA201060513037 Ref C: 2024-11-06T10:01:07Z' status: code: 200 message: OK @@ -751,13 +625,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A18Z&ske=2024-10-16T12%3A41%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A51Z&sr=b&sp=r&sig=ce%2B3gA8xrFwlTQtuc1lVbQ3%2BCTVkMbTTkoi9dp8uRdc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:51.677853Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This - is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:11.503Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:47.728Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"environmentVariables":{"a":"2","b":"3"},"loadTestConfiguration":{"engineInstances":5,"splitAllCSVs":false,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A11Z&ske=2024-11-06T17%3A01%3A11Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A01%3A11Z&sr=b&sp=r&sig=RA%2Bnj4%2BvWRH82fkOnJDrPvWNtWZ7Q%2BcldhB2zSibAew%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:01:11.1432046Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"This + is a load test created with arguments","displayName":"Create_with_args_test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:01:03.579Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -766,17 +640,17 @@ interactions: connection: - keep-alive content-length: - - '1154' + - '1151' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:51 GMT + - Wed, 06 Nov 2024 10:01:11 GMT mise-correlation-id: - - 4f18a9fd-ee75-4aa0-a682-c549126f256b + - 7a713173-a327-4ab1-9415-01fc5e671e6e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054151Z-18489d46dcccphr7hbyy83t0cc00000007wg00000000f9ts + - 20241106T100110Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u10n x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -786,13 +660,13 @@ interactions: message: OK - request: body: '{"displayName": "CLI-Test", "description": "Test created from az load test - command", "keyvaultReferenceIdentityType": "SystemAssigned", "environmentVariables": - {"a": null, "b": null, "rps": 1, "c": "5"}, "secrets": {}, "certificate": null, - "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": false, "splitAllCSVs": - true}, "passFailCriteria": {"passFailMetrics": {"08a9ea64-c626-4cd4-b61a-9ad7d6c143f0": + command", "keyvaultReferenceIdentityType": "SystemAssigned", "publicIPDisabled": + false, "environmentVariables": {"a": null, "b": null, "rps": 1, "c": "5"}, "secrets": + {}, "certificate": null, "loadTestConfiguration": {"engineInstances": 1, "quickStartTest": + false, "splitAllCSVs": true}, "passFailCriteria": {"passFailMetrics": {"8912389d-b230-4464-a302-9d16ff593d4e": {"aggregate": "avg", "clientMetric": "requests_per_sec", "condition": ">", "value": - "78"}, "99ed47be-db73-493b-9009-9baf86454286": {"aggregate": "percentage", "clientMetric": - "error", "condition": ">", "value": "50"}, "fcca367b-1d29-4703-9030-ecd87265b624": + "78"}, "23ad5949-f563-4dc7-94dc-d22fbff2a8cd": {"aggregate": "percentage", "clientMetric": + "error", "condition": ">", "value": "50"}, "a8b33fdf-183b-4342-a691-c09c7fb81595": {"aggregate": "avg", "clientMetric": "latency", "condition": ">", "value": "200", "requestName": "GetCustomerDetails"}}}}' headers: @@ -803,17 +677,17 @@ interactions: Connection: - keep-alive Content-Length: - - '796' + - '823' Content-Type: - application/merge-patch+json User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: PATCH - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"08a9ea64-c626-4cd4-b61a-9ad7d6c143f0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"99ed47be-db73-493b-9009-9baf86454286":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fcca367b-1d29-4703-9030-ecd87265b624":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","c":"5"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A41%3A52Z&sr=b&sp=r&sig=ncaRd4UcbSGTLwTLUdiXNhNjH4NHkOkCFZ13cPULpV0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:41:52.1587512Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:11.503Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:41:52.141Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8912389d-b230-4464-a302-9d16ff593d4e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"23ad5949-f563-4dc7-94dc-d22fbff2a8cd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a8b33fdf-183b-4342-a691-c09c7fb81595":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-07T02%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A01%3A11Z&sr=b&sp=r&sig=Cbu65Krj8LZJG6KcNBQDa3oNL%2F7eFeaDon%2FjimCDF8c%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:01:11.6228348Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:01:11.613Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -822,17 +696,17 @@ interactions: connection: - keep-alive content-length: - - '1625' + - '1623' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:52 GMT + - Wed, 06 Nov 2024 10:01:11 GMT mise-correlation-id: - - 8c50b27f-b5d6-444e-9465-62ef906e80be + - 26b1e9ef-1336-468c-8116-00bcef197bc9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054151Z-18489d46dccfkdmbtzwpeeg8f800000007xg00000000gxxf + - 20241106T100111Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u13e x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -850,12 +724,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files?api-version=2024-05-01-preview response: body: - string: '{"value":[{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/1ba2c06a-4feb-4e36-9c1d-fb368f0c18b6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A18Z&ske=2024-10-16T12%3A41%3A18Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A52Z&sr=b&sp=r&sig=qEEJ5Eub3NdCBQ%2FEl4t5PG3WoLsWNpZUZ2hEwy2Td%2F8%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:51:52.5431059Z","validationStatus":"VALIDATION_SUCCESS"}]}' + string: '{"value":[{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/bb4124ac-04ed-4327-9be7-fc6c2d9056f6?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A11Z&sr=b&sp=r&sig=CPvQ43iOJJgbfP%2FakYe%2B3fj4NUzFQb2IFR7UiSdqj8E%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:11.9222501Z","validationStatus":"VALIDATION_SUCCESS"}]}' headers: accept-ranges: - bytes @@ -868,13 +742,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:52 GMT + - Wed, 06 Nov 2024 10:01:12 GMT mise-correlation-id: - - 6bcd97e2-c147-4051-a461-1a1ff2d350c7 + - 41e497c9-e419-4747-a5f7-ad991ada348f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054152Z-15484bdf457rtsfnfha0z70xv800000002gg00000000619e + - 20241106T100111Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u14m x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -899,14 +773,14 @@ interactions: Content-Length: - '18' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview&fileType=ADDITIONAL_ARTIFACTS response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/654032d4-6590-4b45-909a-1c9ed7179887?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A53Z&sr=b&sp=r&sig=Q1OEBAmey7W1MSojAndOcS5ZGQqTdbY5PRuh3FZOgzc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:51:53.5839228Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A12Z&sr=b&sp=r&sig=hQuve1L6SZJtaUXfPQLy4XlDowP5tUhWpE7NIPvVMPo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:11:12.4629267Z","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 @@ -917,15 +791,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:53 GMT + - Wed, 06 Nov 2024 10:01:12 GMT location: - - https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-03-01-preview + - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-03-01-preview mise-correlation-id: - - f5370973-3f44-40d0-9880-035563287362 + - 1867266a-7823-4936-8b09-9a11fe938d91 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054152Z-18489d46dccmwsl5v24n61fa8400000007yg000000005pab + - 20241106T100112Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u168 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -943,12 +817,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/additional-data.csv?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/654032d4-6590-4b45-909a-1c9ed7179887?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A53Z&sr=b&sp=r&sig=Q1OEBAmey7W1MSojAndOcS5ZGQqTdbY5PRuh3FZOgzc%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T05:51:53.9753095Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A12Z&sr=b&sp=r&sig=m6v4dwZpJnd%2BQ5hXjz338j8hPfqZvdN7NZGh7vFqXXw%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T10:11:12.7093526Z","validationStatus":"VALIDATION_NOT_REQUIRED"}' headers: accept-ranges: - bytes @@ -957,17 +831,17 @@ interactions: connection: - keep-alive content-length: - - '571' + - '573' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:53 GMT + - Wed, 06 Nov 2024 10:01:12 GMT mise-correlation-id: - - 2cd77c49-cc81-4b1c-91c8-002bf55a865d + - d8d6ea7d-c5ff-4d27-ab7a-869cbe07360f strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054153Z-18489d46dccnnh2b19wcyx7sm000000007zg000000008nme + - 20241106T100112Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u17k x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -996,33 +870,33 @@ interactions: Content-Length: - '236' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview&fileType=ZIPPED_ARTIFACTS response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A54Z&sr=b&sp=r&sig=vk6mF6najF9nUDr6TUZ2eBWpM47YA2ZsiW5jXi9ahvw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:54.5159461Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A13Z&ske=2024-11-07T02%3A01%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A13Z&sr=b&sp=r&sig=0dgK2eFYp8G%2B2njg2KJtn42NoQkDy%2FrQib4q5Dx9fhg%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:13.9379624Z","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 connection: - keep-alive content-length: - - '568' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:54 GMT + - Wed, 06 Nov 2024 10:01:14 GMT location: - - https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview + - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-03-01-preview mise-correlation-id: - - 99a26343-4478-47ce-b7a7-55e6401c63b7 + - 7a6b2e5a-be40-4eeb-bbcd-162f9bfcf16b strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054154Z-18489d46dccp2df8e3m20gzz8w00000007rg00000000htnt + - 20241106T100112Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u18b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1040,12 +914,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A51%3A54Z&sr=b&sp=r&sig=SU19qcgFyC3lSY%2BLgpQVEexCehEI7nTQg4DxElz5Q0Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:51:54.8682845Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A14Z&sr=b&sp=r&sig=1M0TiiRi%2BjlA%2F3ErEqXBjR8R2j3SiIz2YP8ErauVRFI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:14.2102463Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1054,17 +928,17 @@ interactions: connection: - keep-alive content-length: - - '570' + - '572' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:41:54 GMT + - Wed, 06 Nov 2024 10:01:14 GMT mise-correlation-id: - - 51c43968-7920-4508-8ed7-3a11acd9a81d + - 1f738eb1-cf06-4505-97aa-48d6264a916e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054154Z-18489d46dcccphr7hbyy83t0cc00000007x000000000awam + - 20241106T100114Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u1d9 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1082,12 +956,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A00Z&sr=b&sp=r&sig=e%2FSOy9gJ6oaOGji2gOw7KmnXk44VgdoJH0BnL4iQiTM%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:00.0732777Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A13Z&ske=2024-11-07T02%3A01%3A13Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A19Z&sr=b&sp=r&sig=%2FFb8vXWfsvreX8MMe6VhVjyL4RclJwdXO7xdeFETrok%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:19.4835606Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1100,13 +974,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:00 GMT + - Wed, 06 Nov 2024 10:01:19 GMT mise-correlation-id: - - 01bfb809-7841-4fa1-a386-ea73ef72c016 + - b5e20685-7e4e-4c9b-8f21-353bb35ec2dd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054159Z-18489d46dcc4mwx2ddastu82g800000007r000000000fmks + - 20241106T100119Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u28z x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1124,12 +998,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A05Z&sr=b&sp=r&sig=buuZsv4F7OzsxYA1evLiexfiYA%2ByjXix8q7ssdFD0jA%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:05.4367976Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A24Z&sr=b&sp=r&sig=cRjRmxpi8nbCnCjlwqNAAhQlshtaV48y53Mxt%2Fud06Y%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:24.7652965Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1142,13 +1016,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:05 GMT + - Wed, 06 Nov 2024 10:01:24 GMT mise-correlation-id: - - 73151f5b-8d33-4b15-ae09-0d9068e29a89 + - 8d0df8df-0d1d-4e0d-8e80-a0698ede4716 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054205Z-18489d46dccfp7rz6a82yt7pbw00000007w000000000d30b + - 20241106T100124Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u2zb x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1166,12 +1040,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A47Z&ske=2024-10-16T19%3A41%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A10Z&sr=b&sp=r&sig=uKNijnFfvBjnqRQcXEdk%2Bhpl2ia%2FqCwKvAHt%2BNSj73g%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:10.7484571Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A30Z&sr=b&sp=r&sig=lXyg23zvUCTMFc%2BmIE4fXmqjscMHLgsV08hSCtjFj2w%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:30.063145Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1180,17 +1054,17 @@ interactions: connection: - keep-alive content-length: - - '574' + - '569' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:10 GMT + - Wed, 06 Nov 2024 10:01:30 GMT mise-correlation-id: - - 2e007990-e695-49f0-802e-be0e00a86d95 + - 0bcb6385-a7e2-4803-ab1a-7d0da21e3cdd strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054210Z-18489d46dcc5trkwxb4ya4w12000000007u0000000008pwh + - 20241106T100129Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u3k7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1208,73 +1082,31 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A16Z&sr=b&sp=r&sig=IzMIc0e9AoR9ydzvDks5qGREv4vW%2FtLmEiqpQQIWTmw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:16.0729213Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A35Z&sr=b&sp=r&sig=nHOzbWW%2FMFDJ6c90ngEJT1ZrB6OIGmrgo01OxjZIenw%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T10:11:35.3706455Z","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 connection: - - keep-alive + - close content-length: - - '570' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:16 GMT - mise-correlation-id: - - e3ea671a-ee6c-48e6-8709-66c889e80f8d - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054215Z-166cf497cd4v8snbtm724w4g2c00000007z000000000c93c - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-ZIP-artifact.zip?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A21Z&sr=b&sp=r&sig=O4%2FDHA4l08cRHLPD%2BHFMBiVXEYfLS1EqE3emVSp5DJY%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T05:52:21.5000902Z","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 - connection: - - keep-alive - content-length: - - '570' + - '568' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:21 GMT + - Wed, 06 Nov 2024 10:01:35 GMT mise-correlation-id: - - 880144b5-0e57-4382-9ace-c35878f84520 + - 34b6e8b9-cce2-402f-8256-1ec43a1bd348 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054221Z-166cf497cd4q6m55tfpt35bu6000000007tg00000000c956 + - 20241106T100135Z-16bf8d9b4c7z7mxghC1BOMu2gs00000006ag00000001u40x x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1384,14 +1216,14 @@ interactions: Content-Length: - '4870' User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) content-type: - application/octet-stream method: PUT - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview&fileType=JMX_FILE response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A47Z&ske=2024-10-16T19%3A41%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A22Z&sr=b&sp=r&sig=jXOVwp05OXNQdZt19%2FxQGeWxWKrPlliq2irtI%2FmMJaY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:22.5137888Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A38Z&sr=b&sp=r&sig=BNI9Yzl%2FS8%2BJ1ujydcJAKAgDukYwy6Fu1zSieCqr5O4%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:38.6638881Z","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 @@ -1402,15 +1234,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:22 GMT + - Wed, 06 Nov 2024 10:01:38 GMT location: - - https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview + - https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-03-01-preview mise-correlation-id: - - b7546d68-6be7-465b-ba51-55304d49a7cc + - e5bc735e-3dfd-4ec8-8568-1616a94bdc88 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054221Z-18489d46dcck852hghpv4950b000000007u000000000k36q + - 20241106T100136Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dsud x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1428,54 +1260,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A22Z&sr=b&sp=r&sig=vSkvtYDfj3V97GNDDvkvfVmomI269I1A6WQXQqr%2BqzM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:22.6831661Z","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 - connection: - - keep-alive - content-length: - - '558' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:42:22 GMT - mise-correlation-id: - - 107a3ba3-6f56-4163-a7c3-5370640e88eb - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054222Z-166cf497cd4z4rvk0cprvnxxh000000007u000000000gdmu - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A12Z&ske=2024-10-16T21%3A41%3A12Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A28Z&sr=b&sp=r&sig=kTH%2FBeQycyxSu4g4IzVjISDYgK84vxsMstMGYz7MJ%2Bg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:28.0399537Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A39Z&sr=b&sp=r&sig=5wf4x9R%2Byeb6jIv8Bfyr8rKJ1gtRDUMlBjk46IoD3%2FU%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:39.0098457Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1488,13 +1278,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:28 GMT + - Wed, 06 Nov 2024 10:01:39 GMT mise-correlation-id: - - f0d262c8-dd11-45e5-8054-4f7d7c62a6f2 + - 18d0cbc7-c796-47a5-890c-aabf76c7cfc9 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054227Z-15484bdf45782nr6fa3f22900400000002hg000000003hk1 + - 20241106T100138Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dt4b x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1512,12 +1302,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A47Z&ske=2024-10-16T19%3A41%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A33Z&sr=b&sp=r&sig=XPJ0wO%2Fcsrf8m4juzIwnZRTeIXZSTOhRAJ5nsnrfK5A%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:33.3976863Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A44Z&sr=b&sp=r&sig=Bnh5oKzoA7pCbm9SeqCODWQrGK%2Fypd7MBJQF55RmMdg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:44.3745947Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1530,13 +1320,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:33 GMT + - Wed, 06 Nov 2024 10:01:44 GMT mise-correlation-id: - - 7536c9c2-783c-4d8e-94ba-d31d3cf10755 + - f9b17be9-0070-4c27-98eb-36806b0040f7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054233Z-18489d46dccnnh2b19wcyx7sm00000000820000000001u36 + - 20241106T100144Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001du1c x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1554,12 +1344,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A38Z&ske=2024-10-16T12%3A42%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A38Z&sr=b&sp=r&sig=sWG4PcUntKgg9RA8DyhokTjAbip%2BEEYsBh8GPfRWqJk%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:38.8283157Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A49Z&sr=b&sp=r&sig=ME38Hkbzpj%2F%2Fd%2BCoyDuarEB7xT1iZEHj%2BXSEbyzETDQ%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:49.8581899Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1568,17 +1358,17 @@ interactions: connection: - keep-alive content-length: - - '558' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:38 GMT + - Wed, 06 Nov 2024 10:01:49 GMT mise-correlation-id: - - 2e02091f-5a5b-4157-ba2b-db187eddecfa + - ac2486d4-2a5a-4b81-9780-9aaaf8141c7c strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054238Z-15484bdf457slw4lnr1b940h0g0000000310000000004e93 + - 20241106T100149Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dv0y x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1596,12 +1386,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A44Z&sr=b&sp=r&sig=dS8QONcMcWqvQMo9V%2FHD72GqmuIQV3wJIoIua%2BBNohM%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:44.2821168Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A58Z&ske=2024-11-06T17%3A00%3A58Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A11%3A55Z&sr=b&sp=r&sig=pwCTHpUap65ME1g8n1v241JYpYpVMa1T8Wv96VrcEyc%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:11:55.2325499Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1610,17 +1400,17 @@ interactions: connection: - keep-alive content-length: - - '560' + - '556' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:44 GMT + - Wed, 06 Nov 2024 10:01:55 GMT mise-correlation-id: - - 71b1a51a-c570-4961-88a0-c34727f81c2b + - c595e414-e2eb-4cc7-9acc-0f59f8ec2893 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054244Z-15484bdf457rtsfnfha0z70xv800000002f0000000009xbv + - 20241106T100155Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dvx7 x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1638,12 +1428,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A38Z&ske=2024-10-16T12%3A42%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A49Z&sr=b&sp=r&sig=u594KcF1x%2FiC0NW%2BDzbhuIRUZ0CJxgT%2FaECiXO%2Fpowg%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:49.6186806Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-06T17%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A00Z&sr=b&sp=r&sig=L8ei7R%2BxmJxUUMe0zj%2Fe%2FaaUbTJXfHo1Y003V8x8oi0%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:00.5717145Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1652,17 +1442,17 @@ interactions: connection: - keep-alive content-length: - - '564' + - '562' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:49 GMT + - Wed, 06 Nov 2024 10:02:00 GMT mise-correlation-id: - - db68feb2-a979-47be-bafa-59eb51e765b1 + - 530085eb-5b1f-4848-adbf-50e00ee1c5a7 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054249Z-18489d46dccfkdmbtzwpeeg8f800000007yg00000000gh3n + - 20241106T100200Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dwtn x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1680,12 +1470,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A47Z&ske=2024-10-16T19%3A41%3A47Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A52%3A54Z&sr=b&sp=r&sig=i78qy2CQMYyGtp1EnO5XRDQKMGgtDb9BVifcWwod3GY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:52:54.9819509Z","validationStatus":"VALIDATION_INITIATED"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A06Z&sr=b&sp=r&sig=s1oEWzaeoOMHu71V9UoOMjR5Pz1o6pCzyaxYFr0RjXs%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:06.0628953Z","validationStatus":"VALIDATION_INITIATED"}' headers: accept-ranges: - bytes @@ -1698,55 +1488,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:42:54 GMT - mise-correlation-id: - - 9e0e132b-a076-4553-ae50-59e655c902fc - strict-transport-security: - - max-age=31536000; includeSubDomains - x-azure-ref: - - 20241016T054254Z-18489d46dcc7qds9rw9wr310dc0000000660000000003f6q - 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.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) - method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview - response: - body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A38Z&ske=2024-10-16T12%3A42%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A00Z&sr=b&sp=r&sig=Enbf%2B5mYaT3HghsgRY6bWBREOLNQM5IZOEK%2F3eJcD5Y%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:00.3522119Z","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 - connection: - - keep-alive - content-length: - - '560' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 16 Oct 2024 05:43:00 GMT + - Wed, 06 Nov 2024 10:02:06 GMT mise-correlation-id: - - 28c64106-c9dd-42f2-b353-3d4cec7ae951 + - 9d34d805-6a27-4c28-aa85-f36632e57540 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054300Z-15484bdf4576j5mtr8k4ftgbd400000002wg000000000pyc + - 20241106T100205Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dxsw x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1764,12 +1512,12 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case/files/sample-JMX-file.jmx?api-version=2024-05-01-preview response: body: - string: '{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A38Z&ske=2024-10-16T12%3A42%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T05%3A53%3A05Z&sr=b&sp=r&sig=4Z2ADwbA6pWcFcdl0viO305lX7szrPFmWEm0Td4iuSI%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T05:53:05.6773377Z","validationStatus":"VALIDATION_SUCCESS"}' + string: '{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A00%3A40Z&ske=2024-11-07T02%3A00%3A40Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T10%3A12%3A11Z&sr=b&sp=r&sig=PcwQ3YgC0IvKZXnM6PJAorZ3CJftTkhZCyn59dAqMnY%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T10:12:11.3568334Z","validationStatus":"VALIDATION_SUCCESS"}' headers: accept-ranges: - bytes @@ -1782,13 +1530,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:05 GMT + - Wed, 06 Nov 2024 10:02:11 GMT mise-correlation-id: - - c9e91631-af63-4608-9215-091e309a4b9b + - 649dea72-3fb8-42cb-ad3c-57000fd3303d strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054305Z-166cf497cd4r6hmp97992txd7w00000007wg00000000d4xa + - 20241106T100211Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dyup x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1806,13 +1554,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"08a9ea64-c626-4cd4-b61a-9ad7d6c143f0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"99ed47be-db73-493b-9009-9baf86454286":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fcca367b-1d29-4703-9030-ecd87265b624":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","c":"5"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A05Z&sr=b&sp=r&sig=vNE7TqdYQrVbeAyJMdYvfwpCwIg3Jd4rOjsKgN2WLoo%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:05.9760918Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/654032d4-6590-4b45-909a-1c9ed7179887?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A05Z&sr=b&sp=r&sig=ohkD1nhGzNXaQNm9nsZI%2Fl4W%2BUbVc56WHj6VmxQDZHs%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:05.9763139Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A41%3A23Z&ske=2024-10-16T12%3A41%3A23Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A05Z&sr=b&sp=r&sig=ixXvKT53A3bLzZheEfT52d%2BtVDGxqFoxBBpZJ6TZD1I%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:05.9763789Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:11.503Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:01.119Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8912389d-b230-4464-a302-9d16ff593d4e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"23ad5949-f563-4dc7-94dc-d22fbff2a8cd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a8b33fdf-183b-4342-a691-c09c7fb81595":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A11Z&sr=b&sp=r&sig=oaNHkIFNbmhvTFkRGJeFwfsjvMSkSG9zu7xSEwYRgsE%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:02:11.6257551Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A11Z&sr=b&sp=r&sig=mShcVFjKcZPO5YDJEbXD4o%2FVHn%2FT5tkmKLeYP0vc2P0%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:02:11.6261494Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A11Z&sr=b&sp=r&sig=T2Gpr4p1xlCSyJAVlYO8K0nP0LhzGzHC4A0BfQw4RnQ%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:02:11.6263177Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:10.03Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1821,17 +1569,17 @@ interactions: connection: - keep-alive content-length: - - '2769' + - '2760' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:05 GMT + - Wed, 06 Nov 2024 10:02:11 GMT mise-correlation-id: - - 658faa6b-7951-4b3a-93a7-baad756eaa74 + - f6c4c20b-66c7-4846-b195-88fef8397138 strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054305Z-166cf497cd4t2mlmt579burh8800000006y000000000bm1q + - 20241106T100211Z-16bf8d9b4c79v4bbhC1BOMgnfn000000065000000001dyvh x-cache: - CONFIG_NOCACHE x-content-type-options: @@ -1849,23 +1597,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - azsdk-python-mgmt-loadtesting/1.0.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) 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":"mbhardwaj@microsoft.com","createdByType":"User","createdAt":"2024-10-16T05:40:35.5049611Z","lastModifiedBy":"mbhardwaj@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-16T05:40:35.5049611Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"90d99d9d-32f1-467a-b03b-7ce1d1d7e389.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":"2024-11-06T09:59:58.6992937Z","lastModifiedBy":"hbisht@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-06T09:59:58.6992937Z"},"identity":{"type":"None"},"properties":{"dataPlaneURI":"8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '659' + - '653' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:05 GMT + - Wed, 06 Nov 2024 10:02:14 GMT etag: - - '"c5019a78-0000-0200-0000-670f51ea0000"' + - '"fa003b0d-0000-0200-0000-672b3e350000"' expires: - '-1' pragma: @@ -1881,7 +1629,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 27A7B44AA39C47209490E6172B01DEED Ref B: CO6AA3150219019 Ref C: 2024-10-16T05:43:06Z' + - 'Ref A: AE43D60F4C7446919D7EA19B2D2C2FE0 Ref B: MAA201060514045 Ref C: 2024-11-06T10:02:13Z' status: code: 200 message: OK @@ -1895,13 +1643,13 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.64.0 azsdk-python-core/1.31.0 Python/3.8.10 (Windows-10-10.0.26100-SP0) + - AZURECLI/2.57.0 azsdk-python-core/1.28.0 Python/3.11.9 (Windows-10-10.0.26100-SP0) method: GET - uri: https://90d99d9d-32f1-467a-b03b-7ce1d1d7e389.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview + uri: https://8b4f22bd-91d1-4c45-bdb7-f0f6142f62ae.eastus.cnt-prod.loadtesting.azure.com/tests/update-with-config-test-case?api-version=2024-05-01-preview response: body: - string: '{"passFailCriteria":{"passFailMetrics":{"08a9ea64-c626-4cd4-b61a-9ad7d6c143f0":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"99ed47be-db73-493b-9009-9baf86454286":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"fcca367b-1d29-4703-9030-ecd87265b624":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"rps":"1","c":"5"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/54f45dc2-a809-4f43-be80-d4bd9ee47095?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A38Z&ske=2024-10-16T12%3A42%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=%2BjiGDIOZYDgcap7hevprIFgQ2cIJ64TY2BWY3O56Aas%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-10-16T06:43:07.1349637Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/654032d4-6590-4b45-909a-1c9ed7179887?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A38Z&ske=2024-10-16T12%3A42%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=jgqvrtUjUcqdutbor55PMyaT3N8mB%2FL1EGbyQiRUVIg%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-10-16T06:43:07.135237Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://vgdkisez7pna3xr36i6jtz1d.z48.blob.storage.azure.net/78fa5d1e-bb36-41c5-b5dd-017a48594836/aaec9082-3961-454f-9197-f6b3f17e84ea?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-10-16T05%3A42%3A38Z&ske=2024-10-16T12%3A42%3A38Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-10-16T06%3A43%3A07Z&sr=b&sp=r&sig=km%2BiRPhXwG6vH%2FVuX9y1M6k8U%2FqQDSO4v0kuOUJK1lI%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-10-16T06:43:07.1353745Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test - created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-10-16T05:41:11.503Z","createdBy":"mbhardwaj@microsoft.com","lastModifiedDateTime":"2024-10-16T05:43:01.119Z","lastModifiedBy":"mbhardwaj@microsoft.com"}' + string: '{"passFailCriteria":{"passFailMetrics":{"8912389d-b230-4464-a302-9d16ff593d4e":{"clientMetric":"requests_per_sec","aggregate":"avg","condition":">","value":78.0,"action":"continue"},"23ad5949-f563-4dc7-94dc-d22fbff2a8cd":{"clientMetric":"error","aggregate":"percentage","condition":">","value":50.0,"action":"continue"},"a8b33fdf-183b-4342-a691-c09c7fb81595":{"clientMetric":"latency","aggregate":"avg","condition":">","requestName":"GetCustomerDetails","value":200.0,"action":"continue"}}},"environmentVariables":{"c":"5","rps":"1"},"loadTestConfiguration":{"engineInstances":1,"splitAllCSVs":true,"quickStartTest":false},"inputArtifacts":{"testScriptFileInfo":{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/0cbff53a-6cea-44af-9220-f994b048b3ce?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A16Z&sr=b&sp=r&sig=p36nwIc2Z1VkHwSa4Ie2LQUe6tlTeFLytb1gCg87F1Q%3D","fileName":"sample-JMX-file.jmx","fileType":"JMX_FILE","expireDateTime":"2024-11-06T11:02:16.3286002Z","validationStatus":"VALIDATION_SUCCESS"},"additionalFileInfo":[{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/d54e77c6-02d4-4c45-a133-d77f90e80700?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A16Z&sr=b&sp=r&sig=v8B7v9g9Qkc7wIK97CwJL%2BqQxjHRJZRwmAYBHc0nANo%3D","fileName":"additional-data.csv","fileType":"ADDITIONAL_ARTIFACTS","expireDateTime":"2024-11-06T11:02:16.3290502Z","validationStatus":"VALIDATION_NOT_REQUIRED"},{"url":"https://cs2a4met4sv0wxjbzvl2hx62.z22.blob.storage.azure.net/958d85d6-539b-4a31-9b46-e6ad8a91ca00/adf94a8b-9f04-43d9-8c58-89de77c30c6c?skoid=713ccf3d-dc33-4787-a1ee-6b0cc537c37a&sktid=33e01921-4d64-4f8c-a055-5bdaffd5e33d&skt=2024-11-06T10%3A01%3A03Z&ske=2024-11-07T00%3A01%3A03Z&sks=b&skv=2024-05-04&sv=2024-05-04&se=2024-11-06T11%3A02%3A16Z&sr=b&sp=r&sig=eozze1SzqvKM9B6VD1ZJA9Oj%2F5ScIAlP3wU6gweH3Vs%3D","fileName":"sample-ZIP-artifact.zip","fileType":"ZIPPED_ARTIFACTS","expireDateTime":"2024-11-06T11:02:16.3292326Z","validationStatus":"VALIDATION_SUCCESS"}]},"kind":"JMX","publicIPDisabled":false,"testId":"update-with-config-test-case","description":"Test + created from az load test command","displayName":"CLI-Test","keyvaultReferenceIdentityType":"SystemAssigned","createdDateTime":"2024-11-06T10:00:37.803Z","createdBy":"hbisht@microsoft.com","lastModifiedDateTime":"2024-11-06T10:02:10.03Z","lastModifiedBy":"hbisht@microsoft.com"}' headers: accept-ranges: - bytes @@ -1910,17 +1658,17 @@ interactions: connection: - keep-alive content-length: - - '2772' + - '2760' content-type: - application/json; charset=utf-8 date: - - Wed, 16 Oct 2024 05:43:07 GMT + - Wed, 06 Nov 2024 10:02:16 GMT mise-correlation-id: - - d5b61e0d-abd9-44d7-adfb-ef86d96d7110 + - 09d43cf7-45ea-40fc-a687-e2ce6ef5a76e strict-transport-security: - max-age=31536000; includeSubDomains x-azure-ref: - - 20241016T054306Z-18489d46dccfkdmbtzwpeeg8f80000000810000000009bx6 + - 20241106T100215Z-16bf8d9b4c7r848jhC1BOMdr7n00000006f000000000vz2w x-cache: - CONFIG_NOCACHE x-content-type-options: diff --git a/src/load/azext_load/tests/latest/resources/config-disable-public-ip-false.yaml b/src/load/azext_load/tests/latest/resources/config-disable-public-ip-false.yaml new file mode 100644 index 00000000000..966f2742b10 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-disable-public-ip-false.yaml @@ -0,0 +1,15 @@ +displayName: CLI-Test +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +publicIPDisabled: false +autoStop: + errorPercentage: 90 + timeWindow: 60 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/resources/config-disable-public-ip-true.yaml b/src/load/azext_load/tests/latest/resources/config-disable-public-ip-true.yaml new file mode 100644 index 00000000000..9fa76a79be2 --- /dev/null +++ b/src/load/azext_load/tests/latest/resources/config-disable-public-ip-true.yaml @@ -0,0 +1,15 @@ +displayName: CLI-Test +testPlan: sample-JMX-file.jmx +description: 'Test created from az load test command' +engineInstances: 1 +failureCriteria: + - avg(requests_per_sec) > 78 + - percentage(error) > 50 + - GetCustomerDetails: avg(latency) > 200 +env: + - name: 'rps' + value: 1 +publicIPDisabled: true +autoStop: + errorPercentage: 90 + timeWindow: 60 \ No newline at end of file diff --git a/src/load/azext_load/tests/latest/test_load_test.py b/src/load/azext_load/tests/latest/test_load_test.py index 3f2df97a5ce..2d6fde44870 100644 --- a/src/load/azext_load/tests/latest/test_load_test.py +++ b/src/load/azext_load/tests/latest/test_load_test.py @@ -84,6 +84,7 @@ def test_load_test_create(self, rg, load, vnet): "env": LoadTestConstants.VALID_ENV_RPS, "split_csv": LoadTestConstants.SPLIT_CSV_TRUE, "subnet_id": subnet_id, + "disable_public_ip": LoadTestConstants.DISABLE_PUBLIC_IP_TRUE, } ) @@ -98,6 +99,7 @@ def test_load_test_create(self, rg, load, vnet): "keyvaultReferenceIdentityId", self.kwargs["keyvault_reference_id"] ), JMESPathCheck("subnetId", self.kwargs["subnet_id"]), + JMESPathCheck("publicIPDisabled", True), JMESPathCheck("loadTestConfiguration.splitAllCSVs", True), JMESPathCheck("environmentVariables.rps", "10"), ] @@ -116,7 +118,8 @@ def test_load_test_create(self, rg, load, vnet): "--secret {secret} " "--keyvault-reference-id {keyvault_reference_id} " "--subnet-id {subnet_id} " - "--split-csv {split_csv} ", + "--split-csv {split_csv} " + "--disable-public-ip {disable_public_ip} ", checks=checks, ).get_output_in_json() @@ -199,7 +202,7 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "Invalid Azure Key Vault Certificate URL:" in str(e) - # 6 Invalid secret check + # 4 Invalid secret check try: self.cmd( "az load test create " @@ -211,7 +214,7 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "Invalid Azure Key Vault Secret URL:" in str(e) - # 7 Invalid env check + # 5 Invalid env check try: self.cmd( "az load test create " @@ -223,7 +226,7 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "Invalid env argument" in str(e) - # 8 Invalid subnet id check + # 6 Invalid subnet id check self.kwargs.update( { "subnet_id": LoadTestConstants.INVALID_SUBNET_ID, @@ -240,7 +243,7 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "not a valid Azure subnet resource ID" in str(e) - # 9 Invalid test plan file + # 7 Invalid test plan file self.kwargs.update({"test_plan": LoadTestConstants.ADDITIONAL_FILE}) try: self.cmd( @@ -253,7 +256,7 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "Invalid test plan file extension:" in str(e) - # 10 Invalid split csv + # 8 Invalid split csv self.kwargs.update({"split_csv": "Random Text"}) try: self.cmd( @@ -266,7 +269,7 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "Invalid split-csv value:" in str(e) - # 11 Invalid PF criteria in config file + # 9 Invalid PF criteria in config file self.kwargs.update( { "test_id": LoadTestConstants.INVALID_PF_TEST_ID, @@ -284,7 +287,7 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "Invalid failure criteria:" in str(e) - # 12 Invalid - ZIP artifacts count exceeding limit 5 in config file + # 10 Invalid - ZIP artifacts count exceeding limit 5 in config file self.kwargs.update( { "test_id": LoadTestConstants.INVALID_ZIP_COUNT_TEST_ID, @@ -302,6 +305,36 @@ def test_load_test_create(self, rg, load, vnet): except Exception as e: assert "QuotaExceeded" in str(e) + # 11 Invalid public IP disabled + self.kwargs.update({"public_ip_disabled": "Random"}) + try: + self.cmd( + "az load test create " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + "--resource-group {resource_group} " + '--disable-public-ip "{public_ip_disabled}" ', + ) + except Exception as e: + assert "Invalid disable-public-ip value:" in str(e) + + # 12 Invalid public IP disabled true in case of public test + self.kwargs.update( + { + "public_ip_disabled": "true", + "test_id": LoadTestConstants.INVALID_DISABLED_PUBLIC_IP_TEST_ID + }) + try: + self.cmd( + "az load test create " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + "--resource-group {resource_group} " + '--disable-public-ip "{public_ip_disabled}" ', + ) + except Exception as e: + assert "InvalidNetworkConfigurationException" in str(e) + @ResourceGroupPreparer(**rg_params) @LoadTestResourcePreparer(**load_params) def test_load_test_list(self, rg, load): @@ -553,6 +586,111 @@ def test_load_test_update_with_config(self, rg, load): assert response.get("environmentVariables").get("rps") == "1" assert not response.get("environmentVariables").get("a") + @ResourceGroupPreparer(**rg_params) + @LoadTestResourcePreparer(**load_params) + @VirtualNetworkPreparer(**vnet_params) + @StorageAccountPreparer(**sa_params) + def test_load_test_create_and_update_vnet(self, rg, load): + # GET SUBNET ID + result = self.cmd( + "az network vnet subnet list --resource-group {resource_group} --vnet-name {virtual_network}" + ).get_output_in_json() + subnet_id = result[0]["id"] + self.kwargs.update( + { + "test_id": LoadTestConstants.CREATE_AND_UPDATE_VNET_TEST_ID, + "display_name": "Create_and_update_vnet_with_config_test", + "test_description": "This is a load test created with config specific to vnet", + "test_plan": LoadTestConstants.TEST_PLAN, + "engine_instances": "5", + "subnet_id": subnet_id, + "disable_public_ip": LoadTestConstants.DISABLE_PUBLIC_IP_TRUE, + } + ) + + checks = [ + JMESPathCheck("testId", self.kwargs["test_id"]), + JMESPathCheck("loadTestConfiguration.engineInstances", 5), + JMESPathCheck("subnetId", subnet_id), + JMESPathCheck("publicIPDisabled", True), + ] + + # Create load test with disable public ip provided as parameters + test = self.cmd( + "az load test create " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + "--resource-group {resource_group} " + "--display-name '{display_name}' " + "--description '{test_description}' " + '--test-plan "{test_plan}" ' + "--engine-instances {engine_instances} " + "--subnet-id {subnet_id} " + "--disable-public-ip {disable_public_ip} ", + checks=checks, + ).get_output_in_json() + + assert self.kwargs["test_id"] == test.get("testId") + + checks = [ + JMESPathCheck("publicIPDisabled", False), + ] + + self.kwargs.update( + { + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_PUBLIC_IP_DISABLED_FALSE, + } + ) + + # Update test with config having public IP disabled as false + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} ", + checks=checks, + ) + + response = self.cmd( + "az load test show " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + "--resource-group {resource_group} ", + ).get_output_in_json() + + assert self.kwargs["test_id"] == response.get("testId") + assert not response.get("publicIPDisabled") + + # Update test with config having public IP disabled as true + checks = [ + JMESPathCheck("publicIPDisabled", True), + ] + + self.kwargs.update( + { + "load_test_config_file": LoadTestConstants.LOAD_TEST_CONFIG_FILE_PUBLIC_IP_DISABLED_TRUE, + } + ) + self.cmd( + "az load test update " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + '--load-test-config-file "{load_test_config_file}" ' + "--resource-group {resource_group} " + "--subnet-id {subnet_id}", + checks=checks, + ) + + response = self.cmd( + "az load test show " + "--test-id {test_id} " + "--load-test-resource {load_test_resource} " + "--resource-group {resource_group} ", + ).get_output_in_json() + + assert response.get("publicIPDisabled") + @ResourceGroupPreparer(**rg_params) @LoadTestResourcePreparer(**load_params) def test_load_test_update(self, rg, load): diff --git a/src/load/setup.py b/src/load/setup.py index ff3475964f6..bca027a60bc 100644 --- a/src/load/setup.py +++ b/src/load/setup.py @@ -10,7 +10,7 @@ # HISTORY.rst entry. -VERSION = '1.1.1' +VERSION = '1.2.0' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers