From 584693d6533c7f0f71d07ddd7d1d8c69e793e2f8 Mon Sep 17 00:00:00 2001 From: KarishmaGhiya Date: Wed, 29 Sep 2021 13:19:57 -0700 Subject: [PATCH] Monitor query test enable browser and recordings (#17897) --- sdk/monitor/monitor-query/karma.conf.js | 3 +- sdk/monitor/monitor-query/package.json | 4 +- .../recording_includequerystatistics.json | 53 ++ ...ing_includerenderincludevisualization.json | 53 ++ .../recording_query_with_types.json | 53 ++ .../recording_querylogs_bad_query.json | 52 ++ .../recording_querylogsbatch_with_types.json | 52 ++ .../recording_servertimeoutinseconds.json | 53 ++ ..._getmetricdefinitions_gt_querymetrics.json | 377 ++++++++++++ .../recording_listdefinitions.json | 8 + .../recording_listnamespaces.json | 8 + .../recording_includequerystatistics.js | 138 +++++ ...rding_includerenderincludevisualization.js | 140 +++++ .../recording_query_with_types.js | 140 +++++ .../recording_querylogs_bad_query.js | 136 +++++ .../recording_querylogsbatch_with_types.js | 138 +++++ .../recording_servertimeoutinseconds.js | 5 + .../recording_servertimeoutinseconds.js | 138 +++++ ...ng_getmetricdefinitions_gt_querymetrics.js | 551 ++++++++++++++++++ .../recording_listdefinitions.js | 5 + .../recording_listnamespaces.js | 5 + sdk/monitor/monitor-query/rollup.config.js | 3 +- .../unit/modelConverters.unittest.spec.ts | 14 +- .../test/public/logsQueryClient.spec.ts | 197 ++++--- .../test/public/metricsQueryClient.spec.ts | 24 +- .../test/public/shared/testShared.ts | 119 ++-- .../monitor-query/test/setupOpenTelemetry.ts | 83 +-- 27 files changed, 2355 insertions(+), 197 deletions(-) create mode 100644 sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includequerystatistics.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includerenderincludevisualization.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_query_with_types.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogs_bad_query.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogsbatch_with_types.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listdefinitions.json create mode 100644 sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listnamespaces.json create mode 100644 sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includequerystatistics.js create mode 100644 sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includerenderincludevisualization.js create mode 100644 sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_query_with_types.js create mode 100644 sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogs_bad_query.js create mode 100644 sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogsbatch_with_types.js create mode 100644 sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_servertimeoutinseconds.js create mode 100644 sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.js create mode 100644 sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.js create mode 100644 sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listdefinitions.js create mode 100644 sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listnamespaces.js diff --git a/sdk/monitor/monitor-query/karma.conf.js b/sdk/monitor/monitor-query/karma.conf.js index ef0b169477d7..4d7f65fe63a3 100644 --- a/sdk/monitor/monitor-query/karma.conf.js +++ b/sdk/monitor/monitor-query/karma.conf.js @@ -58,6 +58,7 @@ module.exports = function(config) { "MONITOR_WORKSPACE_ID", "METRICS_RESOURCE_ID", "MONITOR_SECONDARY_WORKSPACE_ID", + "MQ_APPLICATIONINSIGHTS_CONNECTION_STRING", "AZURE_CLIENT_ID", "AZURE_CLIENT_SECRET", "AZURE_TENANT_ID" @@ -71,7 +72,7 @@ module.exports = function(config) { coverageReporter: { // specify a common output directory dir: "coverage-browser/", - reporters: [{ type: "json", subdir: ".", file: "coverage.json" }] + reporters: [{ type: "cobertura", subdir: ".", file: "cobertura-coverage.xml" }] }, junitReporter: { diff --git a/sdk/monitor/monitor-query/package.json b/sdk/monitor/monitor-query/package.json index fc333e717bf1..3c9b596a6a98 100644 --- a/sdk/monitor/monitor-query/package.json +++ b/sdk/monitor/monitor-query/package.json @@ -58,7 +58,7 @@ "generate:client:metrics": "autorest --typescript swagger/metrics.md", "generate:client:metrics-namespaces": "autorest --typescript swagger/metric-namespaces.md", "generate:client:metrics-definitions": "autorest --typescript swagger/metric-definitions.md", - "integration-test:browser": "echo 'karma start --single-run' temporarily disabled", + "integration-test:browser": "karma start --single-run", "integration-test:node": "nyc mocha -r esm --require source-map-support/register --slow 5000 --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 5000000 --full-trace \"dist-esm/test/{,!(browser)/**/}/*.spec.js\"", "integration-test": "npm run integration-test:node && npm run integration-test:browser", "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]", @@ -67,7 +67,7 @@ "test:browser": "npm run build:test && npm run integration-test:browser", "test:node": "npm run build:test && npm run integration-test:node", "test": "npm run build:test && npm run integration-test", - "unit-test:browser": "echo 'karma start --single-run' temporarily disabled", + "unit-test:browser": "karma start --single-run", "unit-test:node": "mocha -r esm --require ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --timeout 1200000 --full-trace \"test/{,!(browser)/**/}*.spec.ts\"", "unit-test": "npm run build:test && npm run unit-test:node && npm run unit-test:browser" }, diff --git a/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includequerystatistics.json b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includequerystatistics.json new file mode 100644 index 000000000000..e1df28ff4802 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includequerystatistics.json @@ -0,0 +1,53 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1321", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:36 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - WUS2 ProdSlices", + "x-ms-request-id": "f36c0617-e7d4-4e94-a042-cd033964a200" + } + }, + { + "method": "POST", + "url": "https://api.loganalytics.io/v1/workspaces/workspace-id/query", + "query": {}, + "requestBody": "{\"query\":\"AppEvents | limit 1\",\"timespan\":\"P1D\"}", + "status": 200, + "response": "{\"tables\":[{\"name\":\"PrimaryResult\",\"columns\":[{\"name\":\"TenantId\",\"type\":\"string\"},{\"name\":\"TimeGenerated\",\"type\":\"datetime\"},{\"name\":\"Name\",\"type\":\"string\"},{\"name\":\"Properties\",\"type\":\"dynamic\"},{\"name\":\"Measurements\",\"type\":\"dynamic\"},{\"name\":\"OperationName\",\"type\":\"string\"},{\"name\":\"OperationId\",\"type\":\"string\"},{\"name\":\"ParentId\",\"type\":\"string\"},{\"name\":\"SyntheticSource\",\"type\":\"string\"},{\"name\":\"SessionId\",\"type\":\"string\"},{\"name\":\"UserId\",\"type\":\"string\"},{\"name\":\"UserAuthenticatedId\",\"type\":\"string\"},{\"name\":\"UserAccountId\",\"type\":\"string\"},{\"name\":\"AppVersion\",\"type\":\"string\"},{\"name\":\"AppRoleName\",\"type\":\"string\"},{\"name\":\"AppRoleInstance\",\"type\":\"string\"},{\"name\":\"ClientType\",\"type\":\"string\"},{\"name\":\"ClientModel\",\"type\":\"string\"},{\"name\":\"ClientOS\",\"type\":\"string\"},{\"name\":\"ClientIP\",\"type\":\"string\"},{\"name\":\"ClientCity\",\"type\":\"string\"},{\"name\":\"ClientStateOrProvince\",\"type\":\"string\"},{\"name\":\"ClientCountryOrRegion\",\"type\":\"string\"},{\"name\":\"ClientBrowser\",\"type\":\"string\"},{\"name\":\"ResourceGUID\",\"type\":\"string\"},{\"name\":\"IKey\",\"type\":\"string\"},{\"name\":\"SDKVersion\",\"type\":\"string\"},{\"name\":\"ItemCount\",\"type\":\"int\"},{\"name\":\"SourceSystem\",\"type\":\"string\"},{\"name\":\"Type\",\"type\":\"string\"},{\"name\":\"_ResourceId\",\"type\":\"string\"}],\"rows\":[]}],\"statistics\":{\"query\":{\"executionTime\":0.0781814,\"resourceUsage\":{\"cache\":{\"memory\":{\"hits\":0,\"misses\":0,\"total\":0},\"disk\":{\"hits\":0,\"misses\":0,\"total\":0},\"shards\":{\"hot\":{\"hitbytes\":0,\"missbytes\":0,\"retrievebytes\":0},\"cold\":{\"hitbytes\":0,\"missbytes\":0,\"retrievebytes\":0},\"bypassbytes\":0}},\"cpu\":{\"user\":\"00:00:00.0937500\",\"kernel\":\"00:00:00\",\"totalCpu\":\"00:00:00.0937500\"},\"memory\":{\"peakPerNode\":12588000}},\"inputDatasetStatistics\":{\"extents\":{\"total\":0,\"scanned\":0,\"scannedMinDatetime\":\"0001-01-01T00:00:00.0000000Z\",\"scannedMaxDatetime\":\"0001-01-01T00:00:00.0000000Z\"},\"rows\":{\"total\":0,\"scanned\":0},\"rowstores\":{\"scannedRows\":8303,\"scannedValuesSize\":7998880},\"shards\":{\"queriesGeneric\":0,\"queriesSpecialized\":0}},\"datasetStatistics\":[{\"tableRowCount\":0,\"tableSize\":0}]}}}", + "responseHeaders": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location", + "age": "109", + "content-encoding": "gzip", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:37 GMT", + "strict-transport-security": "max-age=15724800; includeSubDomains", + "vary": "Accept-Encoding", + "via": "1.1 draft-oms-65975698db-cflfp", + "x-content-type-options": "nosniff" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "a286a75072723520656b4e9986158590" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includerenderincludevisualization.json b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includerenderincludevisualization.json new file mode 100644 index 000000000000..67c2f468db2e --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_includerenderincludevisualization.json @@ -0,0 +1,53 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1321", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:37 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - SCUS ProdSlices", + "x-ms-request-id": "770285e2-7d99-4468-a076-227be5a1e600" + } + }, + { + "method": "POST", + "url": "https://api.loganalytics.io/v1/workspaces/workspace-id/query", + "query": {}, + "requestBody": "{\"query\":\"datatable (s: string, i: long) [ \\\"a\\\", 1, \\\"b\\\", 2, \\\"c\\\", 3 ] | render columnchart with (title=\\\"the chart title\\\", xtitle=\\\"the x axis title\\\")\",\"timespan\":\"P1D\"}", + "status": 200, + "response": "{\"tables\":[{\"name\":\"PrimaryResult\",\"columns\":[{\"name\":\"s\",\"type\":\"string\"},{\"name\":\"i\",\"type\":\"long\"}],\"rows\":[[\"a\",1],[\"b\",2],[\"c\",3]]}],\"render\":{\"visualization\":\"columnchart\",\"title\":\"the chart title\",\"accumulate\":false,\"isQuerySorted\":false,\"kind\":null,\"legend\":null,\"series\":null,\"yMin\":\"NaN\",\"yMax\":\"NaN\",\"xAxis\":null,\"xColumn\":null,\"xTitle\":\"the x axis title\",\"yAxis\":null,\"yColumns\":null,\"ySplit\":null,\"yTitle\":null,\"anomalyColumns\":null}}", + "responseHeaders": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location", + "age": "109", + "content-encoding": "gzip", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:37 GMT", + "strict-transport-security": "max-age=15724800; includeSubDomains", + "vary": "Accept-Encoding, Accept-Encoding", + "via": "1.1 draft-oms-65975698db-js2k4", + "x-content-type-options": "nosniff" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "39476be1c9e7c0c99a5cfd2c7d4ff075" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_query_with_types.json b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_query_with_types.json new file mode 100644 index 000000000000..b792298fbfc8 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_query_with_types.json @@ -0,0 +1,53 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1321", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:37 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - SCUS ProdSlices", + "x-ms-request-id": "c9206bf2-61e5-4b48-9010-292422d0dc00" + } + }, + { + "method": "POST", + "url": "https://api.loganalytics.io/v1/workspaces/workspace-id/query", + "query": {}, + "requestBody": "{\"query\":\"print \\\"hello\\\", true, make_datetime(\\\"2000-01-02 03:04:05Z\\\"), toint(100), long(101), 102.1, dynamic({ \\\"hello\\\": \\\"world\\\" })\\n | project \\n stringcolumn=print_0, \\n boolcolumn=print_1,\\n datecolumn=print_2,\\n intcolumn=print_3,\\n longcolumn=print_4,\\n realcolumn=print_5,\\n dynamiccolumn=print_6\\n \",\"timespan\":\"PT5M\"}", + "status": 200, + "response": "{\"tables\":[{\"name\":\"PrimaryResult\",\"columns\":[{\"name\":\"stringcolumn\",\"type\":\"string\"},{\"name\":\"boolcolumn\",\"type\":\"bool\"},{\"name\":\"datecolumn\",\"type\":\"datetime\"},{\"name\":\"intcolumn\",\"type\":\"int\"},{\"name\":\"longcolumn\",\"type\":\"long\"},{\"name\":\"realcolumn\",\"type\":\"real\"},{\"name\":\"dynamiccolumn\",\"type\":\"dynamic\"}],\"rows\":[[\"hello\",true,\"2000-01-02T03:04:05Z\",100,101,102.1,\"{\\\"hello\\\":\\\"world\\\"}\"]]}]}", + "responseHeaders": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location", + "age": "108", + "content-encoding": "gzip", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:37 GMT", + "strict-transport-security": "max-age=15724800; includeSubDomains", + "vary": "Accept-Encoding, Accept-Encoding", + "via": "1.1 draft-oms-65975698db-5pndz", + "x-content-type-options": "nosniff" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "1476629c4a9388af26c32270ebb24e5c" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogs_bad_query.json b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogs_bad_query.json new file mode 100644 index 000000000000..3bd51bc16cdc --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogs_bad_query.json @@ -0,0 +1,52 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1321", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:35 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - SCUS ProdSlices", + "x-ms-request-id": "57a5afeb-4f8f-4945-96fb-84d82b95ce00" + } + }, + { + "method": "POST", + "url": "https://api.loganalytics.io/v1/workspaces/workspace-id/query", + "query": {}, + "requestBody": "{\"query\":\"completely invalid syntax\",\"timespan\":\"P1D\"}", + "status": 400, + "response": "{\"error\":{\"message\":\"The request had some invalid properties\",\"code\":\"BadArgumentError\",\"correlationId\":\"7a4a7e90-9306-4aef-a267-3a57bfd4bcdb\",\"innererror\":{\"code\":\"SyntaxError\",\"message\":\"A recognition error occurred in the query.\",\"innererror\":{\"code\":\"SYN0002\",\"message\":\"Query could not be parsed at 'invalid' on line [1,11]\",\"line\":1,\"pos\":11,\"token\":\"invalid\"}}}}", + "responseHeaders": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location", + "content-length": "369", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:36 GMT", + "strict-transport-security": "max-age=15724800; includeSubDomains", + "vary": "Accept-Encoding", + "via": "1.1 draft-oms-65975698db-2v7rr", + "x-content-type-options": "nosniff" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "232ee9b7d1ba99e5e854c268916a528f" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogsbatch_with_types.json b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogsbatch_with_types.json new file mode 100644 index 000000000000..915570296f3b --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests/recording_querylogsbatch_with_types.json @@ -0,0 +1,52 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1321", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:37 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+wst\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - EUS ProdSlices", + "x-ms-request-id": "3d9a3768-034a-4456-a519-014a91c4df00" + } + }, + { + "method": "POST", + "url": "https://api.loganalytics.io/v1/$batch", + "query": {}, + "requestBody": "{\"requests\":[{\"id\":\"0\",\"body\":{\"query\":\"print \\\"hello\\\", true, make_datetime(\\\"2000-01-02 03:04:05Z\\\"), toint(100), long(101), 102.1, dynamic({ \\\"hello\\\": \\\"world\\\" })\\n | project \\n stringcolumn=print_0, \\n boolcolumn=print_1,\\n datecolumn=print_2,\\n intcolumn=print_3,\\n longcolumn=print_4,\\n realcolumn=print_5,\\n dynamiccolumn=print_6\\n \",\"timespan\":\"PT5M\"},\"path\":\"/query\",\"method\":\"POST\",\"workspace\":\"workspace-id\"}]}", + "status": 200, + "response": "{\"responses\":[{\"id\":\"0\",\"status\":200,\"headers\":{\"Age\":\"109\",\"request-context\":\"appId=cid-v1:70941e4f-7e8f-40b7-b730-183893db0297\"},\"body\":\"{\\\"tables\\\":[{\\\"name\\\":\\\"PrimaryResult\\\",\\\"columns\\\":[{\\\"name\\\":\\\"stringcolumn\\\",\\\"type\\\":\\\"string\\\"},{\\\"name\\\":\\\"boolcolumn\\\",\\\"type\\\":\\\"bool\\\"},{\\\"name\\\":\\\"datecolumn\\\",\\\"type\\\":\\\"datetime\\\"},{\\\"name\\\":\\\"intcolumn\\\",\\\"type\\\":\\\"int\\\"},{\\\"name\\\":\\\"longcolumn\\\",\\\"type\\\":\\\"long\\\"},{\\\"name\\\":\\\"realcolumn\\\",\\\"type\\\":\\\"real\\\"},{\\\"name\\\":\\\"dynamiccolumn\\\",\\\"type\\\":\\\"dynamic\\\"}],\\\"rows\\\":[[\\\"hello\\\",true,\\\"2000-01-02T03:04:05Z\\\",100,101,102.1,\\\"{\\\\\\\"hello\\\\\\\":\\\\\\\"world\\\\\\\"}\\\"]]}]}\"}]}", + "responseHeaders": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location", + "content-encoding": "gzip", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:11:38 GMT", + "strict-transport-security": "max-age=15724800; includeSubDomains", + "vary": "Accept-Encoding", + "via": "1.1 draft-oms-65975698db-f7w6q", + "x-content-type-options": "nosniff" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "32da230fe1f81fb20846b6c697d5d93d" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.json b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.json new file mode 100644 index 000000000000..8e26a7c8daf6 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.json @@ -0,0 +1,53 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1321", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:15:34 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - EUS ProdSlices", + "x-ms-request-id": "4b70a089-36a1-447b-9e22-27353b74d900" + } + }, + { + "method": "POST", + "url": "https://api.loganalytics.io/v1/workspaces/workspace-id/query", + "query": {}, + "requestBody": "{\"query\":\"range x from 1 to 10000000000 step 1 | count\",\"timespan\":\"P1D\"}", + "status": 504, + "response": "{\"error\":{\"message\":\"Gateway timeout\",\"code\":\"GatewayTimeout\",\"correlationId\":\"5b0916dc-db1e-4ea0-bc08-11cc9d45aa95\",\"innererror\":{\"code\":\"GatewayTimeout\",\"message\":\"Kusto query timed out\"}}}", + "responseHeaders": { + "access-control-allow-origin": "*", + "access-control-expose-headers": "Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location", + "content-length": "191", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 01:15:53 GMT", + "preference-applied": "wait=1", + "strict-transport-security": "max-age=15724800; includeSubDomains", + "vary": "Accept-Encoding", + "via": "1.1 draft-oms-7d47d4b4cd-5kggs", + "x-content-type-options": "nosniff" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "f7f46b3463438dc0f1148cb2be69104f" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.json b/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.json new file mode 100644 index 000000000000..fd916b523de0 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.json @@ -0,0 +1,377 @@ +{ + "recordings": [ + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1351", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 00:40:15 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - EUS ProdSlices", + "x-ms-request-id": "936a021f-08e4-45f8-b9b0-fd2cb22de000" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metricDefinitions", + "query": { + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"value\":[{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/TotalCalls\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"TotalCalls\",\"localizedValue\":\"Total Calls\"},\"displayDescription\":\"Total number of calls.\",\"isDimensionRequired\":false,\"unit\":\"Count\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/SuccessfulCalls\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"SuccessfulCalls\",\"localizedValue\":\"Successful Calls\"},\"displayDescription\":\"Number of successful calls.\",\"isDimensionRequired\":false,\"unit\":\"Count\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/TotalErrors\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"TotalErrors\",\"localizedValue\":\"Total Errors\"},\"displayDescription\":\"Total number of calls with error response (HTTP response code 4xx or 5xx).\",\"isDimensionRequired\":false,\"unit\":\"Count\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/BlockedCalls\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"BlockedCalls\",\"localizedValue\":\"Blocked Calls\"},\"displayDescription\":\"Number of calls that exceeded rate or quota limit.\",\"isDimensionRequired\":false,\"unit\":\"Count\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/ServerErrors\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"ServerErrors\",\"localizedValue\":\"Server Errors\"},\"displayDescription\":\"Number of calls with service internal error (HTTP response code 5xx).\",\"isDimensionRequired\":false,\"unit\":\"Count\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/ClientErrors\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"ClientErrors\",\"localizedValue\":\"Client Errors\"},\"displayDescription\":\"Number of calls with client side error (HTTP response code 4xx).\",\"isDimensionRequired\":false,\"unit\":\"Count\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/DataIn\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"DataIn\",\"localizedValue\":\"Data In\"},\"displayDescription\":\"Size of incoming data in bytes.\",\"isDimensionRequired\":false,\"unit\":\"Bytes\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/DataOut\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"DataOut\",\"localizedValue\":\"Data Out\"},\"displayDescription\":\"Size of outgoing data in bytes.\",\"isDimensionRequired\":false,\"unit\":\"Bytes\",\"primaryAggregationType\":\"Total\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]},{\"id\":\"metrics-arm-resource-id/providers/microsoft.insights/metricdefinitions/Latency\",\"resourceId\":\"metrics-arm-resource-id\",\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"category\":\"HTTP Requests\",\"name\":{\"value\":\"Latency\",\"localizedValue\":\"Latency\"},\"displayDescription\":\"Latency in milliseconds.\",\"isDimensionRequired\":false,\"unit\":\"MilliSeconds\",\"primaryAggregationType\":\"Average\",\"supportedAggregationTypes\":[\"None\",\"Average\",\"Minimum\",\"Maximum\",\"Total\",\"Count\"],\"metricAvailabilities\":[{\"timeGrain\":\"PT1M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT5M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT15M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT30M\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT1H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT6H\",\"retention\":\"P93D\"},{\"timeGrain\":\"PT12H\",\"retention\":\"P93D\"},{\"timeGrain\":\"P1D\",\"retention\":\"P93D\"}],\"dimensions\":[{\"value\":\"ApiName\",\"localizedValue\":\"ApiName\"},{\"value\":\"OperationName\",\"localizedValue\":\"OperationName\"},{\"value\":\"Region\",\"localizedValue\":\"Region\"}]}]}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:16 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "4a2662a4-6309-40d7-9679-4aa34f8d7414", + "x-ms-ratelimit-remaining-subscription-resource-requests": "399", + "x-ms-request-id": "{4a2662a4-6309-40d7-9679-4aa34f8d7414}", + "x-ms-routing-request-id": "WESTUS2:20210929T004017Z:4a2662a4-6309-40d7-9679-4aa34f8d7414", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "POST", + "url": "https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token", + "query": {}, + "requestBody": "response_type=token&grant_type=client_credentials&client_id=azure_client_id&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "status": 200, + "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"access_token\"}", + "responseHeaders": { + "cache-control": "no-store, no-cache", + "content-length": "1351", + "content-type": "application/json; charset=utf-8", + "date": "Wed, 29 Sep 2021 00:40:16 GMT", + "expires": "-1", + "nel": "{\"report_to\":\"network-errors\",\"max_age\":86400,\"success_fraction\":0.001,\"failure_fraction\":1.0}", + "p3p": "CP=\"DSP CUR OTPi IND OTRi ONL FIN\"", + "pragma": "no-cache", + "referrer-policy": "strict-origin-when-cross-origin", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://identity.nel.measure.office.net/api/report?catId=GW+estsfd+est\"}]}", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "x-content-type-options": "nosniff", + "x-ms-ests-server": "2.1.12071.16 - EUS ProdSlices", + "x-ms-request-id": "4b70a089-36a1-447b-9e22-2735650fd800" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "TotalCalls", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:17Z/2021-09-29T00:40:17Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/TotalCalls\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"TotalCalls\",\"localizedValue\":\"Total Calls\"},\"displayDescription\":\"Total number of calls.\",\"unit\":\"Count\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:17 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "8484cf60-73d8-45e9-9599-280f7f9784b5", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "{8484cf60-73d8-45e9-9599-280f7f9784b5}", + "x-ms-routing-request-id": "WESTUS2:20210929T004017Z:8484cf60-73d8-45e9-9599-280f7f9784b5", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "SuccessfulCalls", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:17Z/2021-09-29T00:40:17Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/SuccessfulCalls\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"SuccessfulCalls\",\"localizedValue\":\"Successful Calls\"},\"displayDescription\":\"Number of successful calls.\",\"unit\":\"Count\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:17 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "5917ef70-2136-4ef1-80cf-a7c1ba256e4f", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "{5917ef70-2136-4ef1-80cf-a7c1ba256e4f}", + "x-ms-routing-request-id": "WESTUS2:20210929T004017Z:5917ef70-2136-4ef1-80cf-a7c1ba256e4f", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "TotalErrors", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:18Z/2021-09-29T00:40:18Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/TotalErrors\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"TotalErrors\",\"localizedValue\":\"Total Errors\"},\"displayDescription\":\"Total number of calls with error response (HTTP response code 4xx or 5xx).\",\"unit\":\"Count\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:17 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "4048db6d-711e-4c11-87e8-841dc58ac4a7", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "{4048db6d-711e-4c11-87e8-841dc58ac4a7}", + "x-ms-routing-request-id": "WESTUS2:20210929T004018Z:4048db6d-711e-4c11-87e8-841dc58ac4a7", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "BlockedCalls", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:18Z/2021-09-29T00:40:18Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/BlockedCalls\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"BlockedCalls\",\"localizedValue\":\"Blocked Calls\"},\"displayDescription\":\"Number of calls that exceeded rate or quota limit.\",\"unit\":\"Count\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:18 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "41c24b88-f739-414e-b4e9-057bcc428287", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-request-id": "{41c24b88-f739-414e-b4e9-057bcc428287}", + "x-ms-routing-request-id": "WESTUS2:20210929T004018Z:41c24b88-f739-414e-b4e9-057bcc428287", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "ServerErrors", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:18Z/2021-09-29T00:40:18Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/ServerErrors\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"ServerErrors\",\"localizedValue\":\"Server Errors\"},\"displayDescription\":\"Number of calls with service internal error (HTTP response code 5xx).\",\"unit\":\"Count\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:18 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "7ceda581-91e5-40d1-a83a-c954cf4b55dc", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "{7ceda581-91e5-40d1-a83a-c954cf4b55dc}", + "x-ms-routing-request-id": "WESTUS2:20210929T004019Z:7ceda581-91e5-40d1-a83a-c954cf4b55dc", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "ClientErrors", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:19Z/2021-09-29T00:40:19Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/ClientErrors\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"ClientErrors\",\"localizedValue\":\"Client Errors\"},\"displayDescription\":\"Number of calls with client side error (HTTP response code 4xx).\",\"unit\":\"Count\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:18 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "87473b0d-20e3-4ba7-8b1f-50c457340f3a", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-request-id": "{87473b0d-20e3-4ba7-8b1f-50c457340f3a}", + "x-ms-routing-request-id": "WESTUS2:20210929T004019Z:87473b0d-20e3-4ba7-8b1f-50c457340f3a", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "DataIn", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:19Z/2021-09-29T00:40:19Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/DataIn\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"DataIn\",\"localizedValue\":\"Data In\"},\"displayDescription\":\"Size of incoming data in bytes.\",\"unit\":\"Bytes\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:19 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "2da82652-a1bb-44a5-8014-54ac51059cb6", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-request-id": "{2da82652-a1bb-44a5-8014-54ac51059cb6}", + "x-ms-routing-request-id": "WESTUS2:20210929T004019Z:2da82652-a1bb-44a5-8014-54ac51059cb6", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "DataOut", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:20Z/2021-09-29T00:40:20Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/DataOut\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"DataOut\",\"localizedValue\":\"Data Out\"},\"displayDescription\":\"Size of outgoing data in bytes.\",\"unit\":\"Bytes\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:39:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:19 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "fab4c1eb-8335-4430-9ca4-f4d4fcb5a6b0", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-request-id": "{fab4c1eb-8335-4430-9ca4-f4d4fcb5a6b0}", + "x-ms-routing-request-id": "WESTUS2:20210929T004020Z:fab4c1eb-8335-4430-9ca4-f4d4fcb5a6b0", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "metricnames": "Latency", + "api-version": "2018-01-01" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":59,\"timespan\":\"2021-09-28T23:40:20Z/2021-09-29T00:40:20Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/Latency\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"Latency\",\"localizedValue\":\"Latency\"},\"displayDescription\":\"Latency in milliseconds.\",\"unit\":\"MilliSeconds\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T23:40:00Z\"},{\"timeStamp\":\"2021-09-28T23:41:00Z\"},{\"timeStamp\":\"2021-09-28T23:42:00Z\"},{\"timeStamp\":\"2021-09-28T23:43:00Z\"},{\"timeStamp\":\"2021-09-28T23:44:00Z\"},{\"timeStamp\":\"2021-09-28T23:45:00Z\"},{\"timeStamp\":\"2021-09-28T23:46:00Z\"},{\"timeStamp\":\"2021-09-28T23:47:00Z\"},{\"timeStamp\":\"2021-09-28T23:48:00Z\"},{\"timeStamp\":\"2021-09-28T23:49:00Z\"},{\"timeStamp\":\"2021-09-28T23:50:00Z\"},{\"timeStamp\":\"2021-09-28T23:51:00Z\"},{\"timeStamp\":\"2021-09-28T23:52:00Z\"},{\"timeStamp\":\"2021-09-28T23:53:00Z\"},{\"timeStamp\":\"2021-09-28T23:54:00Z\"},{\"timeStamp\":\"2021-09-28T23:55:00Z\"},{\"timeStamp\":\"2021-09-28T23:56:00Z\"},{\"timeStamp\":\"2021-09-28T23:57:00Z\"},{\"timeStamp\":\"2021-09-28T23:58:00Z\"},{\"timeStamp\":\"2021-09-28T23:59:00Z\"},{\"timeStamp\":\"2021-09-29T00:00:00Z\"},{\"timeStamp\":\"2021-09-29T00:01:00Z\"},{\"timeStamp\":\"2021-09-29T00:02:00Z\"},{\"timeStamp\":\"2021-09-29T00:03:00Z\"},{\"timeStamp\":\"2021-09-29T00:04:00Z\"},{\"timeStamp\":\"2021-09-29T00:05:00Z\"},{\"timeStamp\":\"2021-09-29T00:06:00Z\"},{\"timeStamp\":\"2021-09-29T00:07:00Z\"},{\"timeStamp\":\"2021-09-29T00:08:00Z\"},{\"timeStamp\":\"2021-09-29T00:09:00Z\"},{\"timeStamp\":\"2021-09-29T00:10:00Z\"},{\"timeStamp\":\"2021-09-29T00:11:00Z\"},{\"timeStamp\":\"2021-09-29T00:12:00Z\"},{\"timeStamp\":\"2021-09-29T00:13:00Z\"},{\"timeStamp\":\"2021-09-29T00:14:00Z\"},{\"timeStamp\":\"2021-09-29T00:15:00Z\"},{\"timeStamp\":\"2021-09-29T00:16:00Z\"},{\"timeStamp\":\"2021-09-29T00:17:00Z\"},{\"timeStamp\":\"2021-09-29T00:18:00Z\"},{\"timeStamp\":\"2021-09-29T00:19:00Z\"},{\"timeStamp\":\"2021-09-29T00:20:00Z\"},{\"timeStamp\":\"2021-09-29T00:21:00Z\"},{\"timeStamp\":\"2021-09-29T00:22:00Z\"},{\"timeStamp\":\"2021-09-29T00:23:00Z\"},{\"timeStamp\":\"2021-09-29T00:24:00Z\"},{\"timeStamp\":\"2021-09-29T00:25:00Z\"},{\"timeStamp\":\"2021-09-29T00:26:00Z\"},{\"timeStamp\":\"2021-09-29T00:27:00Z\"},{\"timeStamp\":\"2021-09-29T00:28:00Z\"},{\"timeStamp\":\"2021-09-29T00:29:00Z\"},{\"timeStamp\":\"2021-09-29T00:30:00Z\"},{\"timeStamp\":\"2021-09-29T00:31:00Z\"},{\"timeStamp\":\"2021-09-29T00:32:00Z\"},{\"timeStamp\":\"2021-09-29T00:33:00Z\"},{\"timeStamp\":\"2021-09-29T00:34:00Z\"},{\"timeStamp\":\"2021-09-29T00:35:00Z\"},{\"timeStamp\":\"2021-09-29T00:36:00Z\"},{\"timeStamp\":\"2021-09-29T00:37:00Z\"},{\"timeStamp\":\"2021-09-29T00:38:00Z\"},{\"timeStamp\":\"2021-09-29T00:39:00Z\"}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:20 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "efeb2cb4-3d82-4ddc-afe9-94b6c628f7e8", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-request-id": "{efeb2cb4-3d82-4ddc-afe9-94b6c628f7e8}", + "x-ms-routing-request-id": "WESTUS2:20210929T004020Z:efeb2cb4-3d82-4ddc-afe9-94b6c628f7e8", + "x-powered-by": "ASP.NET" + } + }, + { + "method": "GET", + "url": "https://management.azure.com/metrics-arm-resource-id/providers/Microsoft.Insights/metrics", + "query": { + "timespan": "P1D", + "metricnames": "TotalCalls", + "api-version": "2018-01-01", + "metricnamespace": "Microsoft.CognitiveServices/accounts" + }, + "requestBody": null, + "status": 200, + "response": "{\"cost\":1439,\"timespan\":\"2021-09-28T00:39:21Z/2021-09-29T00:39:21Z\",\"interval\":\"PT1M\",\"value\":[{\"id\":\"metrics-arm-resource-id/providers/Microsoft.Insights/metrics/TotalCalls\",\"type\":\"Microsoft.Insights/metrics\",\"name\":{\"value\":\"TotalCalls\",\"localizedValue\":\"Total Calls\"},\"displayDescription\":\"Total number of calls.\",\"unit\":\"Count\",\"timeseries\":[{\"metadatavalues\":[],\"data\":[{\"timeStamp\":\"2021-09-28T00:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T00:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T01:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T02:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T03:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T04:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T05:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T06:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T07:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T08:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T09:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T10:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T11:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T12:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T13:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T14:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T15:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T16:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T17:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T18:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T19:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T20:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T21:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T22:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:38:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:39:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:40:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:41:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:42:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:43:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:44:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:45:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:46:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:47:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:48:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:49:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:50:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:51:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:52:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:53:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:54:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:55:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:56:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:57:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:58:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-28T23:59:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:00:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:01:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:02:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:03:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:04:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:05:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:06:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:07:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:08:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:09:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:10:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:11:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:12:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:13:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:14:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:15:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:16:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:17:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:18:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:19:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:20:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:21:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:22:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:23:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:24:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:25:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:26:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:27:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:28:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:29:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:30:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:31:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:32:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:33:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:34:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:35:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:36:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:37:00Z\",\"total\":0.0},{\"timeStamp\":\"2021-09-29T00:38:00Z\",\"total\":0.0}]}],\"errorCode\":\"Success\"}],\"namespace\":\"Microsoft.CognitiveServices/accounts\",\"resourceregion\":\"westus2\"}", + "responseHeaders": { + "access-control-expose-headers": "Request-Context", + "cache-control": "no-cache", + "content-encoding": "gzip", + "content-type": "application/json", + "date": "Wed, 29 Sep 2021 00:40:21 GMT", + "request-context": "appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822", + "server": "Microsoft-IIS/10.0", + "strict-transport-security": "max-age=31536000; includeSubDomains", + "vary": "Accept-Encoding,Accept-Encoding", + "x-aspnet-version": "4.0.30319", + "x-content-type-options": "nosniff", + "x-ms-correlation-request-id": "8672d1c1-f1c7-4fde-88bd-4856c0186da4", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-request-id": "{8672d1c1-f1c7-4fde-88bd-4856c0186da4}", + "x-ms-routing-request-id": "WESTUS2:20210929T004021Z:8672d1c1-f1c7-4fde-88bd-4856c0186da4", + "x-powered-by": "ASP.NET" + } + } + ], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "876f23e88e1a8d15b1aed42ebac7b2e8" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listdefinitions.json b/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listdefinitions.json new file mode 100644 index 000000000000..71f972d1725c --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listdefinitions.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "51318082523517af006330edad290d57" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listnamespaces.json b/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listnamespaces.json new file mode 100644 index 000000000000..185d3192f849 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/browsers/metricsclient_live_tests/recording_listnamespaces.json @@ -0,0 +1,8 @@ +{ + "recordings": [], + "uniqueTestInfo": { + "uniqueName": {}, + "newDate": {} + }, + "hash": "0ab86be08f7b1ba62aaee7be4c276dd5" +} \ No newline at end of file diff --git a/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includequerystatistics.js b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includequerystatistics.js new file mode 100644 index 000000000000..8d72fc80ddbf --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includequerystatistics.js @@ -0,0 +1,138 @@ +let nock = require('nock'); + +module.exports.hash = "e1fbb8bf640bc71422d415d0d29fd399"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'ec10535d-9a4a-4dae-93db-feb5a94f8500', + 'x-ms-ests-server', + '2.1.12071.16 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AiX_gI_uMdVMgGiC-tk86J4; expires=Fri, 29-Oct-2021 01:09:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrnk6llSA3Leo3QEDap4PqP1FJda-keC4Yw4hsv5VvxeNtfwq87kaziAPfRkW7_Z4WPBDyRhdECcCS2IPd99wycdKsbnPgT5J05jugwaHWy7N4cw29MKzgNU1sD6zJP6jy8ksAf4EX8Hi-_y0o453Gj3D0atsDDMkb6vwLWqY9ljUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:46 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'df60bb9e-6748-4698-804a-9f3507389f00', + 'x-ms-ests-server', + '2.1.12071.16 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AnCtjGAsMIdEhTtUJvAEb7U; expires=Fri, 29-Oct-2021 01:09:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7qdB7TejqyaxD2MrTIuq26eFr_-Kyl-VLsGj507rqnldeeo2V4IrtB6xJYBQcrAX1-hFFtfk2X3VYuXjhJ8IDr5ohJD5blzgTj4YEVLh2rUIcriUvbsb4SCT4fk5RrXtBhu3Ce2Zki9OYmOWhE_K9I4c3aDGg9dBKFH2J_ZEctkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:46 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=cfc28819-d0b8-474b-beeb-a55a1ab0f9b3&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'b87587ba-2ba3-4d1b-bf63-68f31f64d400', + 'x-ms-ests-server', + '2.1.12071.16 - SCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AhC-QpJxidhHgQ6dKhypk23KBMGnAQAAANqz5dgOAAAA; expires=Fri, 29-Oct-2021 01:09:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:46 GMT', + 'Content-Length', + '1321' +]); + +nock('https://api.loganalytics.io:443', {"encodedQueryParams":true}) + .post('/v1/workspaces/workspace-id/query', {"query":"AppEvents | limit 1","timespan":"P1D"}) + .reply(200, ["1f8b0800000000000003","95555f6fda3010ff2e7e669519ab0879eb40aaa28a8208f461139a4c72028bc4ce6ca72343f9ee3b3ba1a16a15331489b3ef77ffef7c6762d82e034dc29f6722580e24244bc573a6aa15e832336440129995b97807598360c24429724d55d81b6d14177b520f3a0ccfe111042866e00a98e2d120eb1afa6cff7a542d952c40198e7e767a2a64f2e41a3607a64b053908d30f5c14d62b2e85cff01bb03fd42553e04b475c0973c0c89358962ae9b51a83d65e9b1b0dca8f7828d1a840abb60837c0934496be481e8ae20594f5d0835ac90c7c196e6191d08689feb44c338ea1ac2ddb8b9acb14323f6c11fb31d1d28f997253f951b1c12a2c1476f32bbf29d6a92d86aa166a057b4fba1b81ef4afec132f60171ac5d033e6ea2591f2e7a82de90e2d9d30d5d1019c85d141d88e3e15a8ff326ae34227b9f134fdd7f5d02fbac79b7036233834fd8d6d2d86b866b9c0abc3993df25a8ca127082a4b4d36e9f2e12d23b3a0e86c1f01b0ab7ba379aedc14213961c1c91432e1be903c75727a4039273ada1218d342c43aa1e9094ebe30d307d602a756e1da469f1bbca4027d39d146078f00a979bdabdd5e9ff4bedaa827590daea294aaba6b4cd14124a43f7ddd1c9687c4f2926f8084ae084753cd28631b5921f25506797aa02d87109ea19879484c3aff74140a933cb45519a19334c839b96ae487032ee5947f2922d4c56c284c0e57245cfb9985d368c75830ebfb86fdd79d4fc7e904e869d6e95a92f8df4b91b2ddb48050ed372564e2418d1d11bf8856525e898ff4593e3c924c014bcabbe6d4adc776e81e2f2b266daabb88084b30c25d3b658e9c784e1aa768b1d2d37e3e7daccde342669bdadebfa1f6d28542bfe070000"], [ + 'Date', + 'Wed, 29 Sep 2021 01:09:47 GMT', + 'Content-Type', + 'application/json; charset=utf-8', + 'Transfer-Encoding', + 'chunked', + 'Connection', + 'keep-alive', + 'Strict-Transport-Security', + 'max-age=15724800; includeSubDomains', + 'via', + '1.1 draft-oms-65975698db-5cb6f', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Expose-Headers', + 'Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location', + 'Vary', + 'Accept-Encoding', + 'Content-Encoding', + 'gzip' +]); diff --git a/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includerenderincludevisualization.js b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includerenderincludevisualization.js new file mode 100644 index 000000000000..8f707668d1c0 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_includerenderincludevisualization.js @@ -0,0 +1,140 @@ +let nock = require('nock'); + +module.exports.hash = "0bc4f15d2e4dca6ef3360659f801809a"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '260e0efc-8552-45ac-bcdd-e35f53f38200', + 'x-ms-ests-server', + '2.1.12071.16 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=ApeP0yz6TkZHtdojivfedn0; expires=Fri, 29-Oct-2021 01:09:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIr-LaYBXMYt05UfwXpPYvze_wiblqWGIoI10TR7m1K6N0upIWoFvskMZ6syVufQGMuoyfh9wkEckY902mGcX_9BQADDaaMXQSiF-2-XmqL07-Xs7s9R8ZZRhax0thWCqaQrrcd1BajZvM5fnQuNACyrfxxZzVkIBOubp2kFY2AUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:46 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '584d96a3-9231-44fc-9da9-ee4a450ab100', + 'x-ms-ests-server', + '2.1.12071.16 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=Agoch67VnYVLs7c0swjY4vw; expires=Fri, 29-Oct-2021 01:09:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_wdZQFDbRAy49Of6QQPTFMbPbyfElGeD9l2ErpMCn-ErJL9ncWMDDhlBEVRPHOuhr_cs-RgTULlg_Jinyl6rgcaPmwAublna8Q1zBFWwL5CRiRLEJmHfpeXvQl7Zhe3LwPAlun3rSzkQycozmA1HUG3V9ahpB8-3TiLi3nD8z-sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:47 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=7ebf4f5c-68b8-4d62-8332-c40a12375d10&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '9f651060-a3a6-42d6-9329-c3d39cd8c900', + 'x-ms-ests-server', + '2.1.12071.16 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AtvQLgfL6uZKlOvmQ5QHJ3bKBMGnAQAAANuz5dgOAAAA; expires=Fri, 29-Oct-2021 01:09:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:47 GMT', + 'Content-Length', + '1321' +]); + +nock('https://api.loganalytics.io:443', {"encodedQueryParams":true}) + .post('/v1/workspaces/workspace-id/query', {"query":"datatable (s: string, i: long) [ \"a\", 1, \"b\", 2, \"c\", 3 ] | render columnchart with (title=\"the chart title\", xtitle=\"the x axis title\")","timespan":"P1D"}) + .reply(200, ["1f8b08000000000000035590414fc3300c85ff4ae5732ec0ad37b43313306e550f5e67360b379912071aaafe779a7664db29f9de7b719e3c82e25e2840dd8c60b127a8e1d5738f3ebd5388a260a073127b7b1709b3ace9bc5cd5b33dc2648ac957535cb65a03defde4010d209887d634b007f398cf0ecc53db2e11b207f2508ff0cd21a2f02f2a3b3b4f590b7427f4b98eb24a9ead27aa16ad5a1503d875b18f823adb9f28810c70788be4d3ce79a54351bfd8ce60a38801a1235d2990e7bc8d95d20be7ffb7b8850c3814189e072eb161b3142cf871d370a8704e968ae9f65ddafc6ff6c2bbb3b016ba8c5909adeb51ee5f4cd31ff59afed7bf010000"], [ + 'Date', + 'Wed, 29 Sep 2021 01:09:47 GMT', + 'Content-Type', + 'application/json; charset=utf-8', + 'Transfer-Encoding', + 'chunked', + 'Connection', + 'keep-alive', + 'Vary', + 'Accept-Encoding', + 'Strict-Transport-Security', + 'max-age=15724800; includeSubDomains', + 'via', + '1.1 draft-oms-65975698db-4gxpk', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Expose-Headers', + 'Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location', + 'Vary', + 'Accept-Encoding', + 'Content-Encoding', + 'gzip' +]); diff --git a/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_query_with_types.js b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_query_with_types.js new file mode 100644 index 000000000000..565ece375444 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_query_with_types.js @@ -0,0 +1,140 @@ +let nock = require('nock'); + +module.exports.hash = "e98f612be5ed2753de802a8dce07c550"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'a45fcc25-81ba-4914-8f04-75317c71bc00', + 'x-ms-ests-server', + '2.1.12071.16 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AipnpJJJXepOsMp4VKOK8M4; expires=Fri, 29-Oct-2021 01:09:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevriM52EFeEX_ZNVkZ263ZCUWP8hAZ7lJZIQH1hqNqI3AlppMF3vP53zXGYRi8mRVBh3TliGyf3L6iCK_pujGu0RpWkHFN3v0KroVOR5BVk3AHpOhPOxb5_H-E-ODGc8_FR8QR20_UNFij4PBxniD_sXmbxQxCUAhVjedofsxBRM20gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:47 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'b1fdc889-1d40-4f89-8e89-7ad6b60cd600', + 'x-ms-ests-server', + '2.1.12071.16 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AvrARSJCtmZDoP-Ib8l_GAo; expires=Fri, 29-Oct-2021 01:09:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQeZzLNND8EkbTO5e5RG5Y_4n_Rt3xLZ9QswFqmqoT4d3Uj-s1oBU9w0E7DF2A88cLDe66bLu_3AHjX9YuJuxTolPpJvjUYJbn-Z0gJvYLffseOFxAl9acDUw2VZxUGbTRLtd02kM7U-aVy_G9P6OJDQhfeOCu-JvjGCUscnyZjkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:47 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=f3b92448-c8d2-4965-9a5b-0e3b68454d6a&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '37436546-c301-400a-b429-eb5bcb1bcd00', + 'x-ms-ests-server', + '2.1.12071.16 - EUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AqjDgMnJhBpJr1BK6P4GZEDKBMGnAQAAANuz5dgOAAAA; expires=Fri, 29-Oct-2021 01:09:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:47 GMT', + 'Content-Length', + '1321' +]); + +nock('https://api.loganalytics.io:443', {"encodedQueryParams":true}) + .post('/v1/workspaces/workspace-id/query', {"query":"print \"hello\", true, make_datetime(\"2000-01-02 03:04:05Z\"), toint(100), long(101), 102.1, dynamic({ \"hello\": \"world\" })\n | project \n stringcolumn=print_0, \n boolcolumn=print_1,\n datecolumn=print_2,\n intcolumn=print_3,\n longcolumn=print_4,\n realcolumn=print_5,\n dynamiccolumn=print_6\n ","timespan":"PT5M"}) + .reply(200, ["1f8b08000000000000036590cb0a83301045ffe5ae63196dbbc95794d255d545d4d006a229312222f9f72608ad8fc5c070ee19b8cc0c272a2d7bf07c46275a098e9b55adb0d35df6837660a88d1eda6ea3f4ceaaeeb504c170d3e74fe1d9cfab8cd17b2bb2b5d30827f74e644e8578e5a9ceedb580d68636c74e91ad1d2bc5a151649b465358547d28b560f892c19a313e24c75b6a6dc09c1d2443464409a509650f3a73ba70ba3ec152a2306998ec9432ccc572548017188dd54d018fb2f4a5ff02f36189ae8e010000"], [ + 'Date', + 'Wed, 29 Sep 2021 01:09:48 GMT', + 'Content-Type', + 'application/json; charset=utf-8', + 'Transfer-Encoding', + 'chunked', + 'Connection', + 'keep-alive', + 'Vary', + 'Accept-Encoding', + 'Strict-Transport-Security', + 'max-age=15724800; includeSubDomains', + 'via', + '1.1 draft-oms-65975698db-bn8c6', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Expose-Headers', + 'Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location', + 'Vary', + 'Accept-Encoding', + 'Content-Encoding', + 'gzip' +]); diff --git a/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogs_bad_query.js b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogs_bad_query.js new file mode 100644 index 000000000000..50cc7bbc1d73 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogs_bad_query.js @@ -0,0 +1,136 @@ +let nock = require('nock'); + +module.exports.hash = "64e7ff5621f217326d4861e2f58f4b10"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'b46550d0-eb75-45d1-9d8a-09376a747e00', + 'x-ms-ests-server', + '2.1.12071.16 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AkE0zuCK1pNHgC_GdNVZ-ZM; expires=Fri, 29-Oct-2021 01:09:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrg55n5gR4z5YV4_pAT8p33lTnXY_ZC-12dSeTOXVHYmAW8xlmOVgMq9HACdzMk7MZ7-tOM1Q7pOuqtZOX_XumoE3ti6TR1jPWMvQzL_QR5T8j-HaFbgFS1KJA3Ejo76WbzMlpGj7hrVxjb5yPBZPaX2DkPZqOwiyPCcvIcZ6zWKggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:44 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'c0f24a73-06ad-4f8a-9af2-310f0d37d300', + 'x-ms-ests-server', + '2.1.12071.16 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=AogWsTdsPxtIi5edv4In3xc; expires=Fri, 29-Oct-2021 01:09:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrO3mmX3uKvLpQL1JcjWjzgbl4-jdMoLyiL6F6Prh1F_RFG3YfzyHtgEIU5lwV6vo63NJfaEXCwnjLUnUKZSQbwbdBDa7tdC4pwTROzuJglZknDQFb8-VdxxW9WXrCkJjNLoKubOanDenU0Ft3Fwn7G5aLCUhy44Ug743f8NI1vWIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:44 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=49b64b64-805e-482d-97d8-98860a301b79&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'c31ef68a-783a-4b6c-8fc6-e5136cceb900', + 'x-ms-ests-server', + '2.1.12071.16 - WUS2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AkmjpwpSoF9Mn6bSF1fwbnfKBMGnAQAAANiz5dgOAAAA; expires=Fri, 29-Oct-2021 01:09:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:45 GMT', + 'Content-Length', + '1321' +]); + +nock('https://api.loganalytics.io:443', {"encodedQueryParams":true}) + .post('/v1/workspaces/workspace-id/query', {"query":"completely invalid syntax","timespan":"P1D"}) + .reply(400, {"error":{"message":"The request had some invalid properties","code":"BadArgumentError","correlationId":"f5a34498-0269-4548-a0e8-26e5a7425c32","innererror":{"code":"SyntaxError","message":"A recognition error occurred in the query.","innererror":{"code":"SYN0002","message":"Query could not be parsed at 'invalid' on line [1,11]","line":1,"pos":11,"token":"invalid"}}}}, [ + 'Date', + 'Wed, 29 Sep 2021 01:09:46 GMT', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Length', + '369', + 'Connection', + 'keep-alive', + 'Strict-Transport-Security', + 'max-age=15724800; includeSubDomains', + 'via', + '1.1 draft-oms-65975698db-cbz54', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Expose-Headers', + 'Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location', + 'Vary', + 'Accept-Encoding' +]); diff --git a/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogsbatch_with_types.js b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogsbatch_with_types.js new file mode 100644 index 000000000000..92e78e197e21 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_querylogsbatch_with_types.js @@ -0,0 +1,138 @@ +let nock = require('nock'); + +module.exports.hash = "8b2fcfb892caf52eb423f4a836b1276e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Length', + '980', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '11e6b405-4117-4db5-bd64-4148f559b200', + 'x-ms-ests-server', + '2.1.12071.16 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AjVcBDoy1XBAiqDdvA0S7MI; expires=Fri, 29-Oct-2021 01:09:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrLuf2nmt0hWTkUDcRC1KkEZoj5TJ3-L92K8BNQEDbYGxnlMFY80N06uadwMjOB1JGFcPueSarxq6Oj5kvjoKRzlxI95-xNC-X1ejEX5Tua2BK4NowR2TmkbboEAEzz4uJOYT7tS9u0u8-Z-2IwvqDyc0E00S-OsTyjiZuGrEV9ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:48 GMT' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'a10d771c-13cf-4bba-b92f-64a59cd2bc00', + 'x-ms-ests-server', + '2.1.12071.16 - WUS2 ProdSlices', + 'Set-Cookie', + 'fpc=AjOMbeDC7dpPsXFJ4dPEoko; expires=Fri, 29-Oct-2021 01:09:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvudHSVcjjYUpsK5pCxWvQAgX-oqaK6Z8QQUDvD_pkq86rWiBoZ-FXALMsm3h654t-uMDQsuu3vLSUEdEnFi8VJn_mUx1ZgXLPqUa0p5VmnTGQAIPdWBAR7IDrVgN8_uzrYmIuw8CBKjdaTa3-XWsD21Ny4zYmlTHCCjSdVcoB5kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:48 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=2180418c-df5f-4e3b-b11b-18b182c080b6&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '1dab35f3-45d2-4073-82e1-741c2c25b400', + 'x-ms-ests-server', + '2.1.12071.16 - NCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AmmgSD8O1mlOkDoMoVXH5W3KBMGnAQAAANyz5dgOAAAA; expires=Fri, 29-Oct-2021 01:09:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:09:48 GMT', + 'Content-Length', + '1321' +]); + +nock('https://api.loganalytics.io:443', {"encodedQueryParams":true}) + .post('/v1/$batch', {"requests":[{"id":"0","body":{"query":"print \"hello\", true, make_datetime(\"2000-01-02 03:04:05Z\"), toint(100), long(101), 102.1, dynamic({ \"hello\": \"world\" })\n | project \n stringcolumn=print_0, \n boolcolumn=print_1,\n datecolumn=print_2,\n intcolumn=print_3,\n longcolumn=print_4,\n realcolumn=print_5,\n dynamiccolumn=print_6\n ","timespan":"PT5M"},"path":"/query","method":"POST","workspace":"workspace-id"}]}) + .reply(200, ["1f8b0800000000000003","6d92316fc3201085ffcbcda602db95134b1d3a76abaa4e0d1eb0b9b448c4b8809b5a96ff7b8fa495d2c403e878ef3b780266f01806d7070c50ef66301a6ae09041882a8ea4e59c67f0814aa3a7d50c8feff84b78fc1c3144d6b93ee27724550dc3937ee88c665fa2aef8b61458ee59859b3d2b795bb1b62a38139b62b32d74cbf36d054b06add313f5ce12a26a2d06997248e8d501a994f0eccd41f9e905c368a3844c42e7ec78e86fc010bde9dfcfe6898bd370e9483aed926f9db36b74d2af59ad22aeb1498f2641ff79d3c7359ce46bd2baf5cc49bf663daad5c449bf493c5169bad5d0678b3a1a92bd3b9eae7227e999ad75c4463f2239f4f49c71c178feca8b9a9735bf7f2357d08f105cd0c8ef0461b3947fad32ed4fd3d179ab53b148689aa559e8a8e507553d77046b020000"], [ + 'Date', + 'Wed, 29 Sep 2021 01:09:49 GMT', + 'Content-Type', + 'application/json; charset=utf-8', + 'Transfer-Encoding', + 'chunked', + 'Connection', + 'keep-alive', + 'Strict-Transport-Security', + 'max-age=15724800; includeSubDomains', + 'via', + '1.1 draft-oms-65975698db-bkh5p', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Expose-Headers', + 'Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location', + 'Vary', + 'Accept-Encoding', + 'Content-Encoding', + 'gzip' +]); diff --git a/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_servertimeoutinseconds.js b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_servertimeoutinseconds.js new file mode 100644 index 000000000000..a177cdb8c959 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests/recording_servertimeoutinseconds.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "a9754f628eca49784b1bdc32be99b305"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.js b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.js new file mode 100644 index 000000000000..0cc23bd6e9b3 --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/logsqueryclient_live_tests__server_timeout/recording_servertimeoutinseconds.js @@ -0,0 +1,138 @@ +let nock = require('nock'); + +module.exports.hash = "bfb65e597beefa5bc3d5340b63bfc165"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '7a13265c-e381-48f4-85e6-4a15a00be100', + 'x-ms-ests-server', + '2.1.12071.16 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AhA0QYkVgLFMkFUyJqkHGO8; expires=Fri, 29-Oct-2021 01:14:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQJjksh1hMxDMibfDv45JeRytm1C8YKw0px_Ko4GR9VIG_xoDPZ1o9XmqsnqtOepVAMj62TQiLOQdc4ZYl3U_jP0YWlc2JC6VKSM-Ebxjdrf4hORepWQ-aHibN4MbbZoORvC-rJyJF9-SHx2KLvK-SrunV3P3WustyOKqX-TzBzQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:14:24 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'eddcc5ad-2b1d-47ca-9c9f-ef08239dcf00', + 'x-ms-ests-server', + '2.1.12071.16 - EUS ProdSlices', + 'Set-Cookie', + 'fpc=Ahy7h2CA46BBlnRkSV25iHM; expires=Fri, 29-Oct-2021 01:14:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrkWKQ7b8K2icBZ6g9Sxi4JVCjrvFuciqjqS5B_7zM1fvAg5O1XWTBfMZioCjUX-9-qAYg45U5psDF-hX_xbU8pDfXnUbtVp8FZwNoxojmGUS9laJQVKgFkBjyEe7Zv7pzGQl6tlsC_eGjMzdyKpVMZohW2RjBsucGE_BAdgr85OQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:14:24 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=56da48e9-a1ff-40d6-8cf4-19481c8b8da9&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'df60bb9e-6748-4698-804a-9f354e5d9f00', + 'x-ms-ests-server', + '2.1.12071.16 - NCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AmU0GAb49lVHnxlu37iBK2LKBMGnAQAAAPC05dgOAAAA; expires=Fri, 29-Oct-2021 01:14:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Wed, 29 Sep 2021 01:14:24 GMT', + 'Content-Length', + '1321' +]); + +nock('https://api.loganalytics.io:443', {"encodedQueryParams":true}) + .post('/v1/workspaces/workspace-id/query', {"query":"range x from 1 to 10000000000 step 1 | count","timespan":"P1D"}) + .reply(504, {"error":{"message":"Gateway timeout","code":"GatewayTimeout","correlationId":"b7af81f3-5553-418d-a02a-6770e6ca5054","innererror":{"code":"GatewayTimeout","message":"Connection error","statusDetails":{"code":"ESOCKETTIMEDOUT","connect":false}}}}, [ + 'Date', + 'Wed, 29 Sep 2021 01:14:49 GMT', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Length', + '245', + 'Connection', + 'keep-alive', + 'Strict-Transport-Security', + 'max-age=15724800; includeSubDomains', + 'via', + '1.1 draft-oms-65975698db-dsv2l', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Expose-Headers', + 'Retry-After,Age,WWW-Authenticate,x-resource-identities,x-ms-status-location', + 'Preference-Applied', + 'wait=1', + 'Vary', + 'Accept-Encoding' +]); diff --git a/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.js b/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.js new file mode 100644 index 000000000000..975d5098f39e --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_getmetricdefinitions_gt_querymetrics.js @@ -0,0 +1,551 @@ +let nock = require('nock'); + +module.exports.hash = "4fd7bf1befe734cad57e42076a7df2b5"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'd4e30a48-104e-47c8-ab7b-c0478be5b800', + 'x-ms-ests-server', + '2.1.12071.16 - NCUS ProdSlices', + 'Set-Cookie', + 'fpc=AiMp6nhuPDBMsxTR3eYc9KA; expires=Thu, 28-Oct-2021 23:02:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQQKDStUaXsY602ZHpS-0QaB6DD_IumOaErfzjDCZjOJ_hRWRLST75jyPLo1zN7DMQW5TiZmHkatcIHOrTGOyjn7swpBd8C12t48CQljdaqCLOSd5rP5nn8w_VIZ-OqPwuwG0Ahb1665ldeJ3gZ7Ep5VY0TtcJTjLh_AeAGtXGfIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 28 Sep 2021 23:02:06 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/98123456-7614-3456-5678-789980112547/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/98123456-7614-3456-5678-789980112547/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '2a599d8f-7319-4b3e-89fd-e4475a4ecf00', + 'x-ms-ests-server', + '2.1.12071.16 - SCUS ProdSlices', + 'Set-Cookie', + 'fpc=AiMb-EUnCHxPoSmzh8hHReY; expires=Thu, 28-Oct-2021 23:02:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrS8_5ECE4BRmL8QvPub220UinK5supJmmmF5SpOEC1BrTpTL8lbiIsYGuUBLGmpdJVGdkBmoshcoYVHWe_9bplgAgYFS1YfnOtgmGg1MY1AbhJnP1UtYYv4xcYHfxh7O_KURjntod2OewObSYejC2ZtTpmczWjj4IEXgElc8MAU8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 28 Sep 2021 23:02:06 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/98123456-7614-3456-5678-789980112547/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=64c72af8-5d49-400e-aa20-97395919d909&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"access_token"}, [ + 'Cache-Control', + 'no-store, no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '1ca007a6-759d-483e-8cab-e39872cc9e00', + 'x-ms-ests-server', + '2.1.12071.16 - NCUS ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Ar_Vi5Oo40BApvYzxOK0VRkE8LayAQAAAO6V5dgOAAAA; expires=Thu, 28-Oct-2021 23:02:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Tue, 28 Sep 2021 23:02:06 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metricDefinitions') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffc5131fbe8d147779bf5a499d6c5aa2daa6573776f3afb74f7419e6def1e7cfae9f6fea793dded873bf9bdedf3f3f3c9cec1837c72fe7072b7ce9b6a5d4ff3cfeb6abd6aee2ef2b62ea6cd7636bb2c9aaabebbaaabcb6296d7cddd2f8a695d35d5793b3ea92e96455b5ce6aff3fab298e6cddd6c3aadd6cbb6b9fbd3cdf630848585502c9be2624eeda5f12c3f2f001148bfa9daac3cc9cab2f968f49141eeecffada3231c97d9226f56d994e6e1a3db40a157a6599b5f54f535bdf1ed376f5ea6aff25fb4ce1bfe0ad03e7a6467f6a3801c6535cdcae207f9ec27fd6f53f9fa978c3e9a15cdaaccae9fe6964cb6cd72bd98e4755a9da704a26cc604ad689e168b9c66a25a0281a2ce89cae759d9e4a38fd6843cbd7b028ca9e9aa2e16597d7d7c7151e7171900bfb95e5904a841b35eadaabacd679d260d31e7472faa654e6d8e2ff33abbc06f5fd06c2fd60bfc96bdd3df0c24e9f2fba38f84d2c79759516693a2246232b45ffc514b587f5e670506f7f2cdee17f4529db7f9127de2a387f79e1231baedeedfb2ddee6d1bdedbb965c3dd6fdfaedda7b76cb7bb77bb86bb4fa3cd88b4336ac6f32e0435bc76bc2a5e64c47e1146335fa113d3fccb15cd2740f3379197c206feabaff20bfa38f68e7ef34bbe8fe6ffbf516aafd75382d89cafad281b0c7ffe6ab63e4d7acce09adca0e35e58edd6b85708d88f141d3e8ab7fb91a2a3b77a2c67be4227a679a8c7222f850dfc57559d45ded16ffe7fa6e898b94febbaaa21d006bb9fbf4a2ea4478f09f8eb54bf1f526ed2a8e3c0a557453b4f73bc9912955644d23cdd6274ec9fd36a96a7fbefdea5d4e6febb77777ea40b87dafd4817d25b3dee345fa113d33c54759197c206feabaaf122efe837ff3fd3854f689c6ff399782e981441efe7af32ec1084fe0ad940bfbfb5af47af93226ce7599be6efa6793ea37789f772e8bb5fb426d59296c5a2687fa4f686dafd48edd15bc474211b9aafd089691e6ab5c84b6103ff55556e9177f49bff9fa93dc0cc6bf569302982decf5fb587d77347901e1bc8f73779815db5c7fe5f43af126669b16cf37a495ea23884313ff0470ee0a6763fd284f4568f33cd57e8c4340f155de4a5b081ffaaeabbc83bfacdffcf34e14959d02ca85c635204bd9fbf9ab043901e1bc8f75f4b134ee5d58608b041095230fc2325481fc5dbfd4809d25b3da6345fa113d33cd4719197c206feabaaea22efe837ff3f53824fb3363bc3780d623f7fd59f25456feaf14d4a5f0da9bcd7d4180aaf584eab45b1bc486778a158a693eb366f6ea9d19ea02d35fd9146eb37fc91460b1456e4a5b081ffaaeaadc83bfacdff0f35da976bf80606b39fdf2a4d68d19b7c7c95e2bb9b945ab56e2faa1f29b51f2935fa849b11697fa4d43e50f23d08b7526acf49e697d36b1ab0c1ece7af5273b4e84dbef96a48a7e9f7d0628ba22c8b269f56cb59734b65f6055e792dafd01b833acde9a91f69357c166ff823adc60dfc57557745ded16f48ab7dff","97fc3f9d279939582c0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding,Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-resource-requests', + '399', + 'x-ms-request-id', + '{d213e629-5357-4f95-aed1-32d19fbff732}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-correlation-request-id', + 'd213e629-5357-4f95-aed1-32d19fbff732', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230208Z:d213e629-5357-4f95-aed1-32d19fbff732', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:08 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3ddaddf9a9bbfe87f7f4c38f461f15cb36af2fb3925e7bf966f70bfa84fe58e71f3dfade2ffea898d1a7779bf5a499d6c5aa2daa6573776f3afb74f7419e6def1e7cfae9f6fea793dded873bf9bdedf3f3f3c9cec1837c72fe7072b7ce9b6a5d4ff3cfeb6abd6aee2ef2b62ea6cd7636bb2c9aaabebbaaabcb6296d7cddd2f8a695d35d5793b3ea92e96455b5ce6af099d629a3777b3e9b45a2fdbe6ee4f37dbb78170b66c8a8b39b5d7c677df546d569e6465d9d0a8daeb150deaa3e1e6d466992da8cd2f3614f828005056d3ac2c7e90cf7ed2ff3695af7fc9e8a359d1accaecfa696e8965db2cd78b495ea7d5794a20ca664cd0d63458fafe0423a43f79f2f2bac81b263ca194cdb2366344f0d1f7093efd4dbffd626efbbacd162b7adf9f549ee91d9ed416dd7ef46867bcf34b461b5f204678bf17f6dff785fbeffbc2a7effbc283f77de1e07d5f78f89e2feceebcef0bbbeffb0261f57e2fbcef4cefbeef4cefbeef4cefbeef4cefbeef4cefbeef4cefbeef4cefbdef4cefbdef4cd3ffdef385f79de9bdf79de9bdf79de9bdf79de9bdf79de9bdf79de9bdf79de97bef3bd3f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6efbfef4cdf7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7fbf99064de97feff54264a6bfff4bc80dcfebbaaa4faa192280d7eb29052ae4fdd3e7881d28fc9ae27317640c473504da4449757e21d1c255deb4eb66efa3","5ff2ff00d8d997e5d80d0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{ecc2a734-9355-4e43-8851-878f34eb7731}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11998', + 'x-ms-correlation-request-id', + 'ecc2a734-9355-4e43-8851-878f34eb7731', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230210Z:ecc2a734-9355-4e43-8851-878f34eb7731', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:10 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3ddafdf4a7eefa1fded30f3f1a7d542cdbbcbecc4a7aede59bdd2fe813fa639d7ff4e87bbff8a362469fde6dd693665a17abb6a896cdddbde9ecd3dd0779b6bd7bf0e9a7dbfb9f4e76b71feee4f7b6cfcfcf273b070ff2c9f9c3c9dd3a6faa753dcd3fafabf5aab9bbc8dbba9836dbd9ecb268aafaeeaaae2e8b595e3777bf28a675d554e7edf8a4ba58166d7199bf26748a69dedccda6d36abd6c9bbb3fdd6cdf06c2d9b2292ee6d45e1bdf7dbd9e129ce67c5d9e6465d9d0d0daeb158deca3e177a8cd325b509b5f6cc8f0511f4a594db3b2f8413efbc95e9354dafc92d147b3a25995d9f5d3dcd28e1abe582f26799d56e769e35e2160653326b86b2200353ac1a8e94f9ed0bc2ef286278330cc66599b315ef8e8fbd409fd4dbffd626efbbacd162b7adf9f689efd9d1d4c745bb598e59df1ce2f196d7c8198e3fd5ed87fdf17eebfef0b9fbeef0b0fdef78583f77de1e17bbeb0bbf3be2fecbeef0b84d5fbbdf0be33bdfbbe33bdfbbe33bdfbbe33bdfbbe33bdfbbe33bdfbbe33bdf7be33bdf7be334dff7bcf17de77a6f7de77a6f7de77a6f7de77a6f7de77a6f7de77a6f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6efbdef4cdf7bdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7fdf99beffbe337dfffd661a34a5ffbdd70b9199fefe2f21373cafebaa3ea9665e2cf0113e47284121d9149fbb986338d221d02672aaf30b0919aef2a65d377b1ffd","92ff0763d880c5ec0d0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{59b77ea0-ae9d-44da-b709-8889eec97f09}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11997', + 'x-ms-correlation-request-id', + '59b77ea0-ae9d-44da-b709-8889eec97f09', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230217Z:59b77ea0-ae9d-44da-b709-8889eec97f09', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:16 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3dda7df85377fd0fefe9871f8d3e2a966d5e5f6625bdf6f2cdee17f409fdb1ce3f7af4bd5ffc5131a34fef36eb4933ad8b555b54cbe6eede74f6e9ee833cdbde3df8f4d3edfd4f27bbdb0f77f27bdbe7e7e7939d8307f9e4fce1e46e9d37d5ba9ee69fd7d57ad5dc5de46d5d4c9bed6c765934557d77555797c52caf9bbb5f14d3ba6aaaf3767c525d2c8bb6b8cc5f133ac5346fee66d369b55eb6cddd9f6eb66f03e16cd91417736aaf8defbea9daac3cadebaa6e6858edf58a46f5d1707b6ab3cc16d4e6171b127c144228ab6956163fc8673fe97f9deaf7bf64f4d1ac68566576fd34b7f4b28d96ebc524afd3ea3c251865935e15ed3ccdf1664ac45a1165f374ebdb6fdebc747f4eab599eeebf7b97529bfbefdedd19130a6ba211c13c0161e84f9ef3bc2ef286e78b0692cdb23663f4f1d1f70927fa9b7efbc5dcf6759b2d56f4becf0bcc203b3be08516a87ef46867bcf34b461b5f20fe79bf17f6dff785fbeffbc2a7effbc283f77de1e07d5f78f89e2feceebcef0bbbeffb0261f57e2fbcef4cefbeef4cefbeef4cefbeef4cefbeef4cefbeef4cefbeef4cefbdef4cefbdef4cd3ffdef385f79de9bdf79de9bdf79de9bdf79de9bdf79de9bdf79de9bdf79de97bef3bd3f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6efbfef4cdf7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7fbf99064de97feff54264a6bfff4bc80d6757ff843c7a7ae5f57a4af10d450cf439220e8adaa6f8dc8526c3c11081a6008183ab3abf9008e32a6fda75b3f7d12f","f97f00576e320b0f0e0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{70225966-f4fd-4413-87ea-3b88efca1c7d}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11996', + 'x-ms-correlation-request-id', + '70225966-f4fd-4413-87ea-3b88efca1c7d', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230219Z:70225966-f4fd-4413-87ea-3b88efca1c7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3ddadbf9a9bbfe87f7f4c38f461f15cb36af2fb3925e7bf966f70bfa84fe58e71f3dfade2ffea898d1a7779bf5a499d6c5aa2daa6573776f3afb74f7419e6def1e7cfae9f6fea793dded873bf9bdedf3f3f3c9cec1837c72fe7072b7ce9b6a5d4ff3cfeb6abd6aee2ef2b62ea6cd7636bb2c9aaabebbaaabcb6296d7cddd2f8a695d35d5793b3ea92e96455b5ce6af099d629a3777b3e9b45a2fdbe6ee4f37dbb78170b66c8a8b39b5d7c6779f94d5f46d3e3bc9cab2a171b5d72b1ad647c32f509b65b6a036bfd8d0e0a30e08fa2b2b8b1fe4b39f0cbf4fa5c12f197d342b9a55995d3fcd2dc9a8d58bf56292d769759ed2eb6593b6f3ac4df377d33c9fd1bb75d6e66955a7bf685db5595a168ba21d535f6b2207bd7b021ad09f3cbd795de40d4f0da19ccdb2366344f1d1f7a96ffa9b7efbc5dcf6759b2d56f4be3fedcc0b3b3ced2df54573be33def925a38d2f10abbcdf0bfbeffbc2fdf77de1d3f77de1c1fbbe70f0be2f3c7ccf177677def785ddf77d81b07abf17de77a677df77a677df77a677df77a677df77a677df77a677df77a6f7de77a6f7de77a6e97feff9c2fbcef4defbcef4defbcef4defbcef4defbcef4defbcef4defbcef4bdf79de97bef3bd3f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3fbef3bd3fbef3bd3fbef3bd3fbef3bd3fbef3bd3fbef3bd3fbef3bd3fbef3bd3fbef3bd3fbef3bd3f7df77a6efbfef4cdf7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfdf4c83a6f4bff77a2132d3dfff25e486e7755dd527d50cf1c1ebf59442198a0ce873c41614a04df1b90b4286e31e026de2a83abf9048e22a6fda75b3f7d12f","f97f00f684242ffa0d0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{fdab5faa-98c4-41a6-81ae-b9064d741107}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11995', + 'x-ms-correlation-request-id', + 'fdab5faa-98c4-41a6-81ae-b9064d741107', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230221Z:fdab5faa-98c4-41a6-81ae-b9064d741107', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3ddadbfba9bbfe87f7f4c38f461f15cb36af2fb3925e7bf966f70bfa84fe58e71f3dfade2ffea898d1a7779bf5a499d6c5aa2daa6573776f3afb74f7419e6def1e7cfae9f6fea793dded873bf9bdedf3f3f3c9cec1837c72fe7072b7ce9b6a5d4ff3cfeb6abd6aee2ef2b62ea6cd7636bb2c9aaabebbaaabcb6296d7cddd2f8a695d35d5793b3ea92e96455b5ce6af099d629a3777b3e9b45a2fdbe6ee4f37dbb78170b66c8a8b39b5d7c6770129af4febbaaa1b1a577bbda2617d34fc02b559660b6af38b0d0d3eea8028ab6956163fc8673f197c9f6a835f32fa685634ab32bb7e9a5b9251ab17ebc5845a55e729bd5e36e955d1ced3865ea571a63c01cbac4c730049b7befde6cdcb9408b8226ae7e9b49ae5e9fd77efee8ca9fb355188c09d802cf427cf785e1779c3b345a3c866599b31eef8e8fb840efd4dbffd626efbbacd162b7adfe704668f9d1d70425bb560839df1ce2f196d7c81b8e7fd5ed87fdf17eebfef0b9fbeef0b0fdef78583f77de1e17bbeb0bbf3be2fecbeef0b84d5fbbdf0be33bdfbbe33bdfbbe33bdfbbe33bdfbbe33bdfbbe33bdfbbe33bdf7be33bdf7be334dff7bcf17de77a6f7de77a6f7de77a6f7de77a6f7de77a6f7de77a6f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6efbdef4cdf7bdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99de7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7fdf99beffbe337dfffd661a34a5ffbdd70b9199fefe2f21379c5dfb1372e5e995d7eb294537142cd0e7083728669be27317970c8742049a22030eadeafc42828babbc69d7cdde47","bfe4ff01071696520d0e0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{7cb70a88-ab55-485e-83fe-d578a0c63fdb}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11994', + 'x-ms-correlation-request-id', + '7cb70a88-ab55-485e-83fe-d578a0c63fdb', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230222Z:7cb70a88-ab55-485e-83fe-d578a0c63fdb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:22 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3ddabbf75377fd0fefe9871f8d3e2a966d5e5f6625bdf6f2cdee17f409fdb1ce3f7af4bd5ffc5131a34fef36eb4933ad8b555b54cbe6eede74f6e9ee833cdbde3df8f4d3edfd4f27bbdb0f77f27bdbe7e7e7939d8307f9e4fce1e46e9d37d5ba9ee69fd7d57ad5dc5de46d5d4c9bed6c765934557d77555797c52caf9bbb5f14d3ba6aaaf3767c525d2c8bb6b8cc5f133ac5346fee66d369b55eb6cddd9f6eb66f03e16cd91417736aaf8def9e9445be6c4febbaaa1b1a577bbda2617d34fc02b559660b6af38b0d0d3eea8028ab6956163fc8673f197c9f6a835f32fa685634ab32bb7e9a5b9251ab17ebc524afd3ea3ca5d7cb26bd2ada793a95571b1a469ae3fd74ebdb6fdebc4c89762b22749e4e2bfa66ffddbb3b63ea794dc4214827a008fdc9939dd745def044d100b259d6668c363efa3e61427fd36fbf98dbbe6eb3c58adef79980396367074cd0562d386067bcf34b461b5f20c679bf17f6dff785fbeffbc2a7effbc283f77de1e07d5f78f89e2feceebcef0bbbeffb0261f57e2fbcef4cefbeef4cefbeef4cefbeef4cefbeef4cefbeef4cefbeef4cefbdef4cefbdef4cd3ffdef385f79de9bdf79de9bdf79de9bdf79de9bdf79de9bdf79de9bdf79de97bef3bd3f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6efbfef4cdf7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7fbf99064de97feff54264a6bfff4bc80d67d7fe845c797ae5f57a4a810dc509f439220d0ad7a6f8dc8524c3511081a6c880a3aa3abf90b8e22a6fda75b3f7d1","2ff97f005cb6a2ea080e0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{5ad9955c-9c38-4bcc-a627-9e4aa2e5fca6}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11993', + 'x-ms-correlation-request-id', + '5ad9955c-9c38-4bcc-a627-9e4aa2e5fca6', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230223Z:5ad9955c-9c38-4bcc-a627-9e4aa2e5fca6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:23 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3ddadbffa9bbfe87f7f4c38f461f15cb36af2fb3925e7bf966f70bfa84fe58e71f3dfade2ffea898d1a7779bf5a499d6c5aa2daa6573776f3afb74f7419e6def1e7cfae9f6fea793dded873bf9bdedf3f3f3c9cec1837c72fe7072b7ce9b6a5d4ff3cfeb6abd6aee2ef2b62ea6cd7636bb2c9aaabebbaaabcb6296d7cddd2f8a695d35d5793b3ea92e96455b5ce6af099d629a3777b3e9b45a2fdbe6ee4f37dbb78170b66c8a8b39b5d7c6779f666d76b6a411b5d72b1ad047c34da9cd325b509b5f6c46ff917db9aca65959fc209ffda4f74d4a5ffd92d147b3a25995d9f5d3dc1288be7f4d8dd3ea3c2d96d36a512c2fd2195e2896e9e4bacd9b31815cd348a9e113fc4d7ff2cce575417f80ea8453865718137cf47dea88fea6df7e31b77ddd668b15bdefcf284ff3ce0e66b4ad5a4ce7ce78e7978c36be405cf07e2fecbfef0bf7dff7854fdff78507effbc2c1fbbef0f03d5fd8dd79df1776dff705c2eafd5e78df99de7ddf99de7ddf99de7ddf99de7ddf99de7ddf99de7ddf99de7bdf99de7bdf99a6ffbde70bef3bd37bef3bd37bef3bd37bef3bd37bef3bd37bef3bd37bef3bd3f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6efbdef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cdf7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7fdf99beff7e330d9ad2ffdeeb85c84c7fff97901b9ed775559f54338401afd7538a529a8ff03982078abda6f8dc4519c3210d813621529d5f48d8709537edbad9fbe897","fc3f870b93c1d50d0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{d4289bfa-fd1a-45f1-9f7f-06989aeca34d}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11992', + 'x-ms-correlation-request-id', + 'd4289bfa-fd1a-45f1-9f7f-06989aeca34d', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230224Z:d4289bfa-fd1a-45f1-9f7f-06989aeca34d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:24 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3ddafbf4a7eefa1fded30f3f1a7d542cdbbcbecc4a7aede59bdd2fe813fa639d7ff4e87bbff8a362469fde6dd693665a17abb6a896cdddbde9ecd3dd0779b6bd7bf0e9a7dbfb9f4e76b71feee4f7b6cfcfcf273b070ff2c9f9c3c9dd3a6faa753dcd3fafabf5aab9bbc8dbba9836dbd9ecb268aafaeeaaae2e8b595e3777bf28a675d554e7edf8a4ba58166d7199bf26748a69dedccda6d36abd6c9bbb3fdd6cdf06c2d9b2292ee6d45e1bdf7d9ab5d997eb9686d45eaf68441f0db7a536cb6c416d7eb119fe47eeedb29a6665f1837cf693de5729befb25a38f6645b32ab3eba7b9a51135784dadd3ea3cadd6ed45552c2fd219de2896e9e4bacd9b31c15cd360a9e113fc4d7ff2e4e575417f80f08455865718177cf47dea88fea6df7e31b77ddd668b15bdef4f2acff4ce0e26b5ad5acce8ce78e7978c36be408cf07e2fecbfef0bf7dff7854fdff78507effbc2c1fbbef0f03d5fd8dd79df1776dff705c2eafd5e78df99de7ddf99de7ddf99de7ddf99de7ddf99de7ddf99de7ddf99de7bdf99de7bdf99a6ffbde70bef3bd37bef3bd37bef3bd37bef3bd37bef3bd37bef3bd37bef3bd3f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6efbdef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cefbfef4cdf7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7fdf99beff7e330d9ad2ffdeeb85c84c7fff97901b9ed775559f5433c401afd7530a549a8ff039c2070abfa6f8dcc519c3510d813651529d5f48d8709537edbad9fbe8","97fc3f92f936bcd80d0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{2ac79c3e-e93d-41b9-8576-b55ce62b5053}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11991', + 'x-ms-correlation-request-id', + '2ac79c3e-e93d-41b9-8576-b55ce62b5053', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230226Z:2ac79c3e-e93d-41b9-8576-b55ce62b5053', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:26 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7a74ffe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b076ff6f61eedec3dda7bf85377fd0fefe9871f8d3e2a966d5e5f6625bdf6f2cdee17f409fdb1ce3f7af4bd5ffc5131a34fef36eb4933ad8b555b54cbe6eede74f6e9ee833cdbde3df8f4d3edfd4f27bbdb0f77f27bdbe7e7e7939d8307f9e4fce1e46e9d37d5ba9ee69fd7d57ad5dc5de46d5d4c9bed6c765934557d77555797c52caf9bbb5f14d3ba6aaaf3767c525d2c8bb6b8cc5f133ac5346fee66d369b55eb6cddd9f6eb66f03e16cd91417736aaf8def3ecfda7c39bda621b5d72b1ad147c36da9cd325b509b5f6c86ff917bbbaca65959fc209ffd64e7ab5f32fa685634ab32bb7e9a5b12b9efd362992e8ab22c9a7c5a2d67cd9860ad6990d4e20b7cfc5a3ea64f79eef2bac81ba63b2195cdb2366354f0d1f7a923fa9b7efbc5dcf6759b2d5604c69f539ee89d9d9f22ac3636a2b9bfb9d1fe6d1addbf4da34f6fd3e8c16d1a1ddca6d1c35b34daddb94da3dddb34a21e6f6e741b8aefde86e2bbb7a1f8ee6d28be7b1b8aefde86e2bbb7a1f8de6d28be771b8ad3ff6ed1e83614dfbb0dc5f76e43f1bddb507cef3614dfbb0dc5f76e43f17bb7a1f8bddb50fcde6d287eef3614bf771b8adfbb0dc5efdd86e2f76e43f17bb7a1f8bddb507cff3614dfbf0dc5f76f43f1fddb507cff3614dfbf0dc5f76f43f1fddb507cff3614dfbf0dc5efdf86e2f76f43f1fbb7a1f8fddb50fcfe6d287eff3614bf7f1b8adfbf0dc5efdf86e2f76fa638c64fffbbb19152fcfbbf84dc96bcaeabfaa49ac16d7abd9e925fd7d037e26d91b73ac5e7ce2d1b7602c949324e659d5f889b759537edbad9fbe8","97fc3fc54606fd070b0000"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '{1f471a64-88d4-4927-9f37-afb1d24df6cf}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-ratelimit-remaining-subscription-reads', + '11990', + 'x-ms-correlation-request-id', + '1f471a64-88d4-4927-9f37-afb1d24df6cf', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230229Z:1f471a64-88d4-4927-9f37-afb1d24df6cf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:02:29 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/metrics-arm-resource-id/providers/Microsoft.Insights/metrics') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d3aa693f7ab4bb7fefe1e8a3b658e4cd2a5b7ef4e8a3bd9dbddded9d87db7b0fdeecdd7bb4b3f76867ffa7eeda0f0fdc871f8d3e2a966d5e5f6625bdf6f2cdee17f409fdb1ce3f7af4bd5ffc5131a34fef36eb4933ad8b555b54cbe6eede74f6e9ee833cdbde3df8f4d3edfd4f27bbdb0f77f27bdbe7e7e7939d8307f9e4fce1e46e9d37d5ba9ee69fd7d57ad5dc5de46d5d4c9bed6c765934557d77555797c52caf9bbb5f14d3ba6aaaf3767c525d2c8bb6b8cc5f133ac5346fee66d369b55eb6cddd9f6eb66f03e16cd91417736aaf8defbea9daac3cc9cab2a151b5d72b1ad447c3cda9cd325b509b5f6c28f05100a0aca65959fc209ffda4ff6d2a5fff92d147b3a25995d9f5d3dc12cbb659ae1793bc4eabf3944094cd98a0ad69b0f4fd0946487ff2e4e57591374c7842299b656dc688e0a3ef137cfa9b7efbc5dcf6759b2d56f4be9d543bd33b98d416dd7ef46867bcf34b461b5fa0ffbddf0bfbeffbc2fdf77de1d3f77de1c1fbbe70f0be2f3c7ccf177677def785ddf77de17d677a9786f17e2fbcef4cefbeef4cefbeef4cefbeef4cefbeef4cefbeef4cefbdef4cefbdef4cefbdef4cd3ffdef385f79de9bdf79de9bdf79de9bdf79de9bdf79de9bdf79de97bef3bd3f7de77a6efbdef4cdf7bdf99bef7be337def7d67fadefbcef4bdf79de97bef3bd3f7de77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6f7df77a6efbfef4cdf7fdf99beffbe337dff7d67fafefbcef4fdf79de9fbef3bd3f7df77a6efbfef4cdf7f8f993e78b38369a6ffbdd70bef31d3f2c27bccb4bcf01e332d2fbcc74ccb0bef31d3f2c27bccb4bcf01e332d2fbcc74ccb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef3bd3efe37bcb0bef37d39835fadf7bbd40ff7bbf17de6fa6e985f79b697ae1fd669a5e78bf99a617de6fa6e985f79b697ae1fd669a5e78df997e4fdf9b5ea04edeef85f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bd77dfd7f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a623bef70d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcdf4c6312e87feff5c2fbcd34bd40ff7bbf17de6fa6e985f79b697ae1fd669a5e78bf99a617de6fa6e985f79b697ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae1fd661a34a5ffbdd70bef37d3f4c2fbcd34bd40ff7bbf17de6fa6e985f79b697ae1fd669a5e78bf99a617de6fa6e985f79de9f7f4bde985f79de9f7f4bde9051ac6fbbdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebef7bdf7f5bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79b699088fef75e2fbcdf4cd30bef37d3f4c2fbcd34bd40ff7bbf17de6fa6e985f79b697ae1fd669a5e78bf99a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfcbf7e61736cc74bc87f79de9f7f4bde985f79de9f7f4bdf7dfd7f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de77a6dfd3f7a617de6fa63162fadf7bbdf07e334d2fbcdf4cd30bef37d3f4c2fbcd34bd40ff7bbf17de6fa6e985f79b697ae1fd669a5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e2042bddf0bef3bd3efe97bd30bef3bd3efe97bdf7f5fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78bf99c600e87feff5c2fbcd34bdf07e334d2fbcdf4cd30bef37d3f4c2fbcd34bd40ff7bbf17de6fa6e985f79b697ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae1fd661af8d0ffdeeb85f79b697ae1fd669a5e78bf99a617de6fa6e985f79b697ae1fd669a5ea0ffbddf0bef37d3f4c2fbcef47bfadef4c2fbcef4ad7cefe085f79de9f7f4bde985f79de9f7f4bde9059a8af77be17d67fa3d7def07efeb7bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef37d3004fff7baf17de6fa6e985f79b697ae1fd669a5e78bf99a617de6fa6e985f79b697ae1fd669a5ea0ffbddf0bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef37d3684dff7baf17de6fa6e985f79b697ae1fd669a5e78bf99a617de6fa6e985f79b697ae1fd669a5e78bf99a617e87feff5c27bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef40dbe77e485f79a6976c7e87fb746092fbcd74ce385f79a69bcf05e338d17de6ba6f1c27bcd345e78af99c60bef35d378e1bd641a2fbcef4cd3ffdef385f79de9f7f3bdf1c2fbcef4fbf9de78e17d67fafd7c6fbcf0be33fd7ebe375e78df997e3fdf1b2fbcef4cbf9fef8d17de77a6dfcff7c60bef3bd3efe77be385f79de9f7f3bdf1c2fbcef4fbf9de78e17d67fafd7c6fbcf0be33fd7ebe375e78df997e3fdf1b2fbcef4cbf9fef8d17de77a6dfcff7c60bef3bd3efe77be385f79de9f7f3bdf1c2fbcef4fbf9de78e17d67fafd7c6fbcf0be33fd7ebe375e78df997e3fdf1b2fbcef4cbf9fef8d17de77a6dfcff7c60bef3bd3efe77be385f79b69cc1afdefbd5ea0ffbddf0bef37d3f4c2fbcd34bdf07e334d2fbcdf4cd30bef37d3f4c2fbcd34bdf07e334d2fbcef4c1377bce70bd4c9fbbdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebef7eefbfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcd342681fef75e2fbcdf4cd30bf4bff77be1fd669a5e78bf99a617de6fa6e985f79b697ae1fd669a5e78bf99a617de77a6dfd3f7a617de77a6e97feff9c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef402cff4fbbcf0be33fd9ebef7defbfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcd34684aff7baf17de6fa6e985f79b697a81fef77e2fbcdf4cd30bef37d3f4c2fbcd34bdf07e334d2fbcdf4cd30bef3bd3efe97bd30bef3bd3c47feff9020de3fd5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdffbdefbfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcd344844ff7baf17de6fa6e985f79b697ae1fd669a5ea0ffbddf0bef37d3f4c2fbcd34bdf07e334d2fbcdf4cd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3f4bff77ce17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae1fd661a23a6ffbdd70bef37d3f4c2fbcd34bdf07e334d2fbcdf4cd30bf4bff77be1fd669a5e78bf99a617de6fa6e985f79de9f7f4bde985f79de9f7f4bde985f79d69e2f0f77c8108f57e2fbcef4cbfa7ef4d2fbcef4cbfa7ef7dff7d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67fa3d7d6f7ae17d67bae77bdff8c2fbce74c7f7bec50bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef37d31800fdefbd5e78bf99a617de6fa6e985f79b697ae1fd669a5e78bf99a617e87feff7c2fbcd34bdf07e334d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cd3ffdef385f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79b69e043ff7baf17de6fa6e985f79b697ae1fd669a5e78bf99a617de6fa6e985f79b697a81fef77e2fbcdf4cd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd32443eff9024dc5fbbdf0be33fd9ebef783f7f5bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79b6980a7ffbdd70bef37d3f4c2fbcd34bdf07e334d2fbcdf4cd30bef37d3f4c2fbcd34bdf07e334d2fd0ffdeef85f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79de9f7f4bde985f79d69fadf7bbef0be33fd9ebe37bd3030d3c32fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef7df0bebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf0be33fd9ebe37bdf07e338dd6f4bff77ae1fd669a5e78bf99a617de6fa6e985f79b697ae1fd669a5e78bf99a617de6fa6e985f79b697a81fef75e2fbca7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4cbfa7ef4d2fbcef4c9394bee70bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef3bd3efe97bd30bef35d36ca4e97feff5c27bcd345e78af99c60bef35d378e1bd661a2fbcd74ce385f79a69bcf05e338d17de6ba6f1c2fbcef4fbf9de78e17d67fafd7c6fbcf0be33fd7ebe375e78df997e3fdf1b2fbcef4cbf9fef8d17de77a6e97feff9c2fbcef4fbf9de78e17d67fafd7c6fbcf0be33fd7ebe375e78df997e3fdf1b2fbcef4cbf9fef8d17de77a6dfcff7c60bef3bd3efe77be385f79de9f7f3bdf1c2fbcef4fbf9de78e17d67fafd7c6fbcf0be33fd7ebe375e78df997e3fdf1b2fbcef4cbf9fef8d17de77a6dfcff7c60bef3bd3efe77be385f79de9f7f3bdf1c2fbcef4fbf9de78e17d67fafd7c6fbcf0be33fd7ebe375e78bf99c6acd1ffdeeb05fadffbbdf07e334d2fbcdf4cd30bef37d3f4c2fbcd34bdf0e9a39df77be1fd669a5eb869a67b2fbcef4cbfa7ef4d2f5027eff7c2fbcef47bfadef4c2fbcef47bfadef4c2fbc934bdf0be33fd9ebe37bdf0be334d7ae03d5f78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78bf99c624d0ffdeeb85f79b697a81fef77e2fbcdf4cd30bef37d3f4c2fbcd34bdf07e334d2fbcdf4cd30bef37d3f4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbcef47bfadef4c2fbce34fdef3d5f78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78df997e4fdf9b5e78bf99064de97feff54264a6bfff4bbe3ffa28afebaa3ea96639bdf27a3d9de64df3113e5f668bbc5965537cfe4531adaba63a6fc727d5c5b2688bcbfc755e5f16d4f86e369d56eb65db10e83a6faa753dcdebfca2a896f4de55deb4eb66efa35f","f2ff00b69ac774fe150100"], [ + 'Cache-Control', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json', + 'Content-Encoding', + 'gzip', + 'Vary', + 'Accept-Encoding,Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11989', + 'x-ms-request-id', + '{b4ad92e8-1a6b-46f7-8fa4-814c0511fe92}', + 'Request-Context', + 'appId=cid-v1:b021da79-5252-4375-9df5-2e17c1dcd822', + 'Access-Control-Expose-Headers', + 'Request-Context', + 'Server', + 'Microsoft-IIS/10.0', + 'X-AspNet-Version', + '4.0.30319', + 'X-Powered-By', + 'ASP.NET', + 'x-ms-correlation-request-id', + 'b4ad92e8-1a6b-46f7-8fa4-814c0511fe92', + 'x-ms-routing-request-id', + 'WESTUS2:20210928T230304Z:b4ad92e8-1a6b-46f7-8fa4-814c0511fe92', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Tue, 28 Sep 2021 23:03:03 GMT' +]); diff --git a/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listdefinitions.js b/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listdefinitions.js new file mode 100644 index 000000000000..1e65755acfaf --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listdefinitions.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "08db3a6bdc2001164cb53de76670e440"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listnamespaces.js b/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listnamespaces.js new file mode 100644 index 000000000000..b6c8d0ce7c4a --- /dev/null +++ b/sdk/monitor/monitor-query/recordings/node/metricsclient_live_tests/recording_listnamespaces.js @@ -0,0 +1,5 @@ +let nock = require('nock'); + +module.exports.hash = "9e80ccb425fcdf66a2e0557e4cb89462"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} diff --git a/sdk/monitor/monitor-query/rollup.config.js b/sdk/monitor/monitor-query/rollup.config.js index 76367e55a5a6..5d7deee44c14 100644 --- a/sdk/monitor/monitor-query/rollup.config.js +++ b/sdk/monitor/monitor-query/rollup.config.js @@ -1,4 +1,3 @@ import { makeConfig } from "@azure/dev-tool/shared-config/rollup"; -// temporarily disabling browser bundle - there's an issue rolling up @opentelemetry/node that I need to solve. -export default makeConfig(require("./package.json"), { disableBrowserBundle: true }); +export default makeConfig(require("./package.json")); diff --git a/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts b/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts index ae48fa471b73..122380ac4e3c 100644 --- a/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts +++ b/sdk/monitor/monitor-query/test/internal/unit/modelConverters.unittest.spec.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import * as assert from "assert"; +import { assert } from "chai"; import { BatchRequest as GeneratedBatchRequest, BatchQueryRequest @@ -24,7 +24,12 @@ import { SerializerOptions } from "@azure/core-client"; import { OperationTracingOptions } from "@azure/core-tracing"; -import { Durations, ListMetricDefinitionsOptions, MetricsQueryOptions } from "../../../src"; +import { + Durations, + ListMetricDefinitionsOptions, + MetricsQueryOptions, + MetricsQueryResult +} from "../../../src"; import { AbortSignalLike } from "@azure/abort-controller"; describe("Model unit tests", () => { @@ -234,7 +239,10 @@ describe("Model unit tests", () => { // eslint-disable-next-line @typescript-eslint/no-unused-vars const { getMetricByName, ...rest } = actualConvertedResponse; - assert.deepEqual({ ...rest }, expectedResponse); + assert.deepEqual( + { ...rest } as Omit, + expectedResponse + ); }); it("convertRequestOptionsForMetricsDefinitions (all fields)", () => { diff --git a/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts b/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts index a18d8e422782..6fe8c1eba7d6 100644 --- a/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts +++ b/sdk/monitor/monitor-query/test/public/logsQueryClient.spec.ts @@ -4,31 +4,34 @@ import { assert } from "chai"; import { Context } from "mocha"; import { env } from "process"; - +import { createRecorderAndLogsClient, RecorderAndLogsClient } from "./shared/testShared"; +import { Recorder } from "@azure-tools/test-recorder"; import { Durations, LogsQueryClient, QueryBatch } from "../../src"; -import { runWithTelemetry } from "../setupOpenTelemetry"; - -import { - assertQueryTable, - createTestClientSecretCredential, - getMonitorWorkspaceId, - loggerForTest -} from "./shared/testShared"; +// import { runWithTelemetry } from "../setupOpenTelemetry"; + +import { assertQueryTable, getMonitorWorkspaceId, loggerForTest } from "./shared/testShared"; import { ErrorInfo } from "../../src/generated/logquery/src"; -import { ExponentialRetryPolicyOptions, RestError } from "@azure/core-rest-pipeline"; +import { RestError } from "@azure/core-rest-pipeline"; describe("LogsQueryClient live tests", function() { let monitorWorkspaceId: string; - let createClient: (retryOptions?: ExponentialRetryPolicyOptions) => LogsQueryClient; + let logsClient: LogsQueryClient; + let recorder: Recorder; + let testRunId: string; - before(function(this: Context) { + beforeEach(function(this: Context) { + loggerForTest.verbose(`Recorder: starting...`); + const recordedClient: RecorderAndLogsClient = createRecorderAndLogsClient(this); monitorWorkspaceId = getMonitorWorkspaceId(this); - - createClient = (retryOptions?: ExponentialRetryPolicyOptions) => - new LogsQueryClient(createTestClientSecretCredential(), { - retryOptions - }); + logsClient = recordedClient.client; + recorder = recordedClient.recorder; + }); + afterEach(async function() { + if (recorder) { + loggerForTest.verbose("Recorder: stopping"); + await recorder.stop(); + } }); it("queryLogs (bad query)", async () => { @@ -38,13 +41,14 @@ describe("LogsQueryClient live tests", function() { try { // TODO: there is an error details in the query, but when I run an invalid query it // throws (and ErrorDetails are just present in the exception.) - await createClient().queryWorkspace(monitorWorkspaceId, kustoQuery, { + + await logsClient.queryWorkspace(monitorWorkspaceId, kustoQuery, { duration: Durations.oneDay }); assert.fail("Should have thrown an exception"); } catch (err) { // eslint-disable-next-line @typescript-eslint/no-unused-vars -- eslint doesn't recognize that the extracted variables are prefixed with '_' and are purposefully unused. - const { request: _request, response: _response, ...stringizableError } = err; + const { request: _request, response: _response, ...stringizableError }: any = err; const innermostError = getInnermostErrorDetails(err); if (innermostError == null) { @@ -76,54 +80,8 @@ describe("LogsQueryClient live tests", function() { } }); - // disabling http retries otherwise we'll waste retries to realize that the - // query has timed out on purpose. - it("serverTimeoutInSeconds", async () => { - try { - await createClient({ maxRetries: 0, retryDelayInMs: 0, maxRetryDelayInMs: 0 }).queryWorkspace( - monitorWorkspaceId, - // slow query suggested by Pavel. - "range x from 1 to 10000000000 step 1 | count", - { - duration: Durations.twentyFourHours - }, - { - // the query above easily takes longer than 1 second. - serverTimeoutInSeconds: 1 - } - ); - - assert.fail("Should have thrown a RestError for a GatewayTimeout"); - } catch (err) { - // eslint-disable-next-line @typescript-eslint/no-unused-vars -- eslint doesn't recognize that the extracted variables are prefixed with '_' and are purposefully unused. - const { request: _request, response: _response, ...stringizableError } = err; - const innermostError = getInnermostErrorDetails(err); - - assert.deepNestedInclude( - err as RestError, - { - name: "RestError", - statusCode: 504 - }, - `Query should throw a RestError. Message: ${JSON.stringify(stringizableError)}` - ); - - assert.deepNestedInclude( - innermostError, - { - code: "GatewayTimeout" - // other fields that are not stable, but are interesting: - // "message":"Kusto query timed out" - }, - `Should get a code indicating the query timed out. Innermost error: ${JSON.stringify( - innermostError - )}` - ); - } - }); - it("includeQueryStatistics", async () => { - const results = await createClient().queryWorkspace( + const results = await logsClient.queryWorkspace( monitorWorkspaceId, "AppEvents | limit 1", { @@ -141,7 +99,7 @@ describe("LogsQueryClient live tests", function() { }); it("includeRender/includeVisualization", async () => { - const results = await createClient().queryWorkspace( + const results = await logsClient.queryWorkspace( monitorWorkspaceId, `datatable (s: string, i: long) [ "a", 1, "b", 2, "c", 3 ] | render columnchart with (title="the chart title", xtitle="the x axis title")`, { @@ -174,7 +132,7 @@ describe("LogsQueryClient live tests", function() { dynamiccolumn=print_6 `; - const results = await createClient().queryWorkspace(monitorWorkspaceId, constantsQuery, { + const results = await logsClient.queryWorkspace(monitorWorkspaceId, constantsQuery, { duration: Durations.fiveMinutes }); @@ -256,7 +214,7 @@ describe("LogsQueryClient live tests", function() { dynamiccolumn=print_6 `; - const result = await createClient().queryBatch([ + const result = await logsClient.queryBatch([ { workspaceId: monitorWorkspaceId, query: constantsQuery, @@ -352,20 +310,19 @@ describe("LogsQueryClient live tests", function() { testRunId = env.TEST_RUN_ID; } else { testRunId = `ingestedDataTest-${Date.now()}`; - // send some events - await runWithTelemetry(this, (provider) => { - const tracer = provider.getTracer("logsClientTests"); - - tracer - .startSpan("testSpan", { - attributes: { - testRunId, - kind: "now" - } - }) - .end(); - }); + // await runWithTelemetry(this, (provider) => { + // const tracer = provider.getTracer("logsClientTests"); + // + // tracer + // .startSpan("testSpan", { + // attributes: { + // testRunId, + // kind: "now" + // } + // }) + // .end(); + // }); } loggerForTest.info(`testRunId = ${testRunId}`); @@ -380,7 +337,7 @@ describe("LogsQueryClient live tests", function() { it("queryLogs (last day)", async () => { const kustoQuery = `AppDependencies | where Properties['testRunId'] == '${testRunId}'| project Kind=Properties["kind"], Name, Target, TestRunId=Properties['testRunId']`; - const singleQueryLogsResult = await createClient().queryWorkspace( + const singleQueryLogsResult = await logsClient.queryWorkspace( monitorWorkspaceId, kustoQuery, { @@ -418,7 +375,7 @@ describe("LogsQueryClient live tests", function() { } ]; - const result = await createClient().queryBatch(batchRequest); + const result = await logsClient.queryBatch(batchRequest); if ((result as any)["__fixApplied"]) { console.log(`TODO: Fix was required to pass`); @@ -457,10 +414,8 @@ describe("LogsQueryClient live tests", function() { `Polling for results to make sure our telemetry has been ingested....\n${query}` ); - const client = createClient(); - for (let i = 0; i < args.maxTries; ++i) { - const result = await client.queryWorkspace(monitorWorkspaceId, query, { + const result = await logsClient.queryWorkspace(monitorWorkspaceId, query, { duration: Durations.twentyFourHours }); @@ -486,6 +441,74 @@ describe("LogsQueryClient live tests", function() { }); }); +describe("LogsQueryClient live tests - server timeout", function() { + let monitorWorkspaceId: string; + let logsClient: LogsQueryClient; + let recorder: Recorder; + + beforeEach(function(this: Context) { + loggerForTest.verbose(`Recorder: starting...`); + const recordedClient: RecorderAndLogsClient = createRecorderAndLogsClient(this, { + maxRetries: 0, + retryDelayInMs: 0, + maxRetryDelayInMs: 0 + }); + logsClient = recordedClient.client; + recorder = recordedClient.recorder; + monitorWorkspaceId = getMonitorWorkspaceId(this); + }); + afterEach(async function() { + if (recorder) { + loggerForTest.verbose("Recorder: stopping"); + await recorder.stop(); + } + }); + // disabling http retries otherwise we'll waste retries to realize that the + // query has timed out on purpose. + it("serverTimeoutInSeconds", async function(this: Context) { + try { + await logsClient.queryWorkspace( + monitorWorkspaceId, + // slow query suggested by Pavel. + "range x from 1 to 10000000000 step 1 | count", + { + duration: Durations.twentyFourHours + }, + { + // the query above easily takes longer than 1 second. + serverTimeoutInSeconds: 1 + } + ); + assert.fail("Should have thrown a RestError for a GatewayTimeout"); + } catch (err) { + // eslint-disable-next-line @typescript-eslint/no-unused-vars -- eslint doesn't recognize that the extracted variables are prefixed with '_' and are purposefully unused. + const { request: _request, response: _response, ...stringizableError }: any = err; + const innermostError = getInnermostErrorDetails(err); + + assert.deepNestedInclude( + err as RestError, + { + name: "RestError", + statusCode: 504 + }, + `Query should throw a RestError. Message: ${JSON.stringify(stringizableError)}` + ); + + assert.deepNestedInclude( + innermostError, + { + code: "GatewayTimeout" + // other fields that are not stable, but are interesting: + // "message":"Kusto query timed out" + }, + `Should get a code indicating the query timed out. Innermost error: ${JSON.stringify( + innermostError + )}` + ); + } + }); +}); + function getInnermostErrorDetails(thrownError: any): undefined | ErrorInfo { if ( thrownError.details == null || diff --git a/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts b/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts index ed89f42bf45e..f5e363cd637b 100644 --- a/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts +++ b/sdk/monitor/monitor-query/test/public/metricsQueryClient.spec.ts @@ -5,15 +5,31 @@ import { assert } from "chai"; import { Context } from "mocha"; import { Durations, MetricsQueryClient } from "../../src"; -import { createTestClientSecretCredential, getMetricsArmResourceId } from "./shared/testShared"; - +import { + createRecorderAndMetricsClient, + getMetricsArmResourceId, + loggerForTest, + RecorderAndMetricsClient +} from "./shared/testShared"; +import { Recorder } from "@azure-tools/test-recorder"; describe("MetricsClient live tests", function() { let resourceId: string; let metricsQueryClient: MetricsQueryClient; + let recorder: Recorder; beforeEach(function(this: Context) { + loggerForTest.verbose(`Recorder: starting...`); + const recordedClient: RecorderAndMetricsClient = createRecorderAndMetricsClient(this); ({ resourceId } = getMetricsArmResourceId(this)); - metricsQueryClient = new MetricsQueryClient(createTestClientSecretCredential()); + metricsQueryClient = recordedClient.client; + recorder = recordedClient.recorder; + }); + + afterEach(async function() { + if (recorder) { + loggerForTest.verbose("Recorder: stopping"); + await recorder.stop(); + } }); it("getMetricDefinitions -> queryMetrics", async () => { @@ -68,7 +84,7 @@ describe("MetricsClient live tests", function() { assert.isNotEmpty(firstMetricDefinition.name); assert.isNotEmpty(firstMetricDefinition.namespace); - const individualMetricWithNamespace = metricsQueryClient.queryResource( + const individualMetricWithNamespace = await metricsQueryClient.queryResource( resourceId, [firstMetricDefinition.name!], { diff --git a/sdk/monitor/monitor-query/test/public/shared/testShared.ts b/sdk/monitor/monitor-query/test/public/shared/testShared.ts index ba6aba2bac17..6530619b9e26 100644 --- a/sdk/monitor/monitor-query/test/public/shared/testShared.ts +++ b/sdk/monitor/monitor-query/test/public/shared/testShared.ts @@ -1,71 +1,76 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. import { ClientSecretCredential } from "@azure/identity"; -import { env, record, Recorder, isPlaybackMode } from "@azure-tools/test-recorder"; +import { env, record, Recorder, RecorderEnvironmentSetup } from "@azure-tools/test-recorder"; import * as assert from "assert"; import { Context } from "mocha"; import { createClientLogger } from "@azure/logger"; -import { LogsTable } from "../../../src"; - +import { LogsTable, LogsQueryClient, MetricsQueryClient } from "../../../src"; +import { ExponentialRetryPolicyOptions } from "@azure/core-rest-pipeline"; export const loggerForTest = createClientLogger("test"); -/** - * Declare the client and recorder instances. We will set them using the - * beforeEach hook. - */ -export function addTestRecorderHooks(): { recorder(): Recorder; isPlaybackMode(): boolean } { - // When the recorder observes the values of these environment variables in any - // recorded HTTP request or response, it will replace them with the values they - // are mapped to below. - const replaceableVariables: Record = { - MONITOR_WORKSPACE_ID: "", - METRICS_RESOURCE_ID: "", - - AZURE_TENANT_ID: "azure_tenant_id", - AZURE_CLIENT_ID: "azure_client_id", - AZURE_CLIENT_SECRET: "azure_client_secret" - }; +const replaceableVariables: Record = { + MONITOR_WORKSPACE_ID: "workspace-id", + METRICS_RESOURCE_ID: "metrics-arm-resource-id", + MQ_APPLICATIONINSIGHTS_CONNECTION_STRING: "mq_applicationinsights_connection", + AZURE_TENANT_ID: "98123456-7614-3456-5678-789980112547", + AZURE_CLIENT_ID: "azure_client_id", + AZURE_CLIENT_SECRET: "azure_client_secret" +}; +export interface RecorderAndLogsClient { + client: LogsQueryClient; + recorder: Recorder; +} + +export interface RecorderAndMetricsClient { + client: MetricsQueryClient; + recorder: Recorder; +} - let recorder: Recorder; - - // NOTE: use of "function" and not ES6 arrow-style functions with the - // beforeEach hook is IMPORTANT due to the use of `this` in the function - // body. - beforeEach(function(this: Context) { - loggerForTest.verbose(`Recorder: starting...`); - // The recorder has some convenience methods, and we need to store a - // reference to it so that we can `stop()` the recorder later in the - // `afterEach` hook. - recorder = record(this, { - // == Recorder Environment Setup == Add the replaceable variables from - // above - replaceableVariables, - - // We don't use this in the template, but if we had any query parameters - // we wished to discard, we could add them here - queryParametersToSkip: [], - - // Finally, we need to remove the AAD `access_token` from any requests. - // This is very important, as it cannot be removed using environment - // variable or query parameter replacement. The - // `customizationsOnRecordings` field allows us to make arbitrary - // replacements within recordings. - customizationsOnRecordings: [ - (recording: any): any => - recording.replace(/"access_token":"[^"]*"/g, `"access_token":"access_token"`) - ] - }); - }); - - // After each test, we need to stop the recording. - afterEach(async function() { - loggerForTest.verbose("Recorder: stopping"); - await recorder.stop(); - }); +export const testEnv = new Proxy(replaceableVariables, { + get: (target, key: string) => { + return env[key] || target[key]; + } +}); + +export const environmentSetup: RecorderEnvironmentSetup = { + // == Recorder Environment Setup == Add the replaceable variables from + // above + replaceableVariables, + + // We don't use this in the template, but if we had any query parameters + // we wished to discard, we could add them here + queryParametersToSkip: [], + + // Finally, we need to remove the AAD `access_token` from any requests. + // This is very important, as it cannot be removed using environment + // variable or query parameter replacement. The + // `customizationsOnRecordings` field allows us to make arbitrary + // replacements within recordings. + customizationsOnRecordings: [ + (recording: string): any => + recording.replace(/"access_token":"[^"]*"/g, `"access_token":"access_token"`) + ] +}; + +export function createRecorderAndMetricsClient(context: Context): RecorderAndMetricsClient { + const recorder = record(context, environmentSetup); + return { + client: new MetricsQueryClient(createTestClientSecretCredential()), + recorder + }; +} +export function createRecorderAndLogsClient( + context: Context, + retryOptions?: ExponentialRetryPolicyOptions +): RecorderAndLogsClient { + const recorder = record(context, environmentSetup); return { - recorder: () => recorder, - isPlaybackMode: () => isPlaybackMode() + client: new LogsQueryClient(createTestClientSecretCredential(), { + retryOptions + }), + recorder }; } diff --git a/sdk/monitor/monitor-query/test/setupOpenTelemetry.ts b/sdk/monitor/monitor-query/test/setupOpenTelemetry.ts index 939e7c2d38c5..0505df601437 100644 --- a/sdk/monitor/monitor-query/test/setupOpenTelemetry.ts +++ b/sdk/monitor/monitor-query/test/setupOpenTelemetry.ts @@ -1,44 +1,45 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { AzureMonitorTraceExporter } from "@azure/monitor-opentelemetry-exporter"; -import { NodeTracerProvider } from "@opentelemetry/node"; -import { BatchSpanProcessor } from "@opentelemetry/tracing"; -import { TracerProvider } from "@opentelemetry/api"; -import * as dotenv from "dotenv"; -import { Context } from "mocha"; -import { getAppInsightsConnectionString } from "./public/shared/testShared"; - -dotenv.config(); - -export function runWithTelemetry( - mochaContext: Pick, - fn: (provider: TracerProvider) => void -): Promise { - const appInsightsConnectionString = getAppInsightsConnectionString(mochaContext); - - const provider = new NodeTracerProvider({ - // plugins: { - // https: { - // // Ignore Application Insights Ingestion Server - // ignoreOutgoingUrls: [new RegExp(/dc.services.visualstudio.com/i)] - // } - // } - }); - provider.register(); - - // Create an exporter instance - const exporter = new AzureMonitorTraceExporter({ - connectionString: appInsightsConnectionString - }); - - const batchSpanProcessor = new BatchSpanProcessor(exporter); - - // Add the exporter to the provider - // TODO: there is an API incompatiblity here. - provider.addSpanProcessor(batchSpanProcessor as any); - - fn(provider); - - return provider.shutdown(); -} +// import { AzureMonitorTraceExporter } from "@azure/monitor-opentelemetry-exporter"; +// import { NodeTracerProvider } from "@opentelemetry/node"; +// import { BatchSpanProcessor } from "@opentelemetry/tracing"; +// import { TracerProvider } from "@opentelemetry/api"; +// import * as dotenv from "dotenv"; +// import { Context } from "mocha"; +// import { getAppInsightsConnectionString } from "./public/shared/testShared";// + +// dotenv.config(); + +// export function doNothing() {} +// export function runWithTelemetry( +// mochaContext: Pick, +// fn: (provider: TracerProvider) => void +// ): Promise { +// const appInsightsConnectionString = getAppInsightsConnectionString(mochaContext);// + +// const provider = new NodeTracerProvider({ +// // plugins: { +// // https: { +// // // Ignore Application Insights Ingestion Server +// // ignoreOutgoingUrls: [new RegExp(/dc.services.visualstudio.com/i)] +// // } +// // } +// }); +// provider.register();// + +// // Create an exporter instance +// const exporter = new AzureMonitorTraceExporter({ +// connectionString: appInsightsConnectionString +// });// + +// const batchSpanProcessor = new BatchSpanProcessor(exporter);// + +// // Add the exporter to the provider +// // TODO: there is an API incompatiblity here. +// provider.addSpanProcessor(batchSpanProcessor as any);// + +// fn(provider);// + +// return provider.shutdown(); +// }